2006-11-19から1日間の記事一覧

nimpl

C# VS

<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <CodeSnippet Format="1.0.0"> <Header> <Title>nimpl</Title> <Shortcut>nimpl</Shortcut> <Description>throw NotImplementedException</Description> <Author>gnarl</Author> </header></codesnippet></codesnippets>

genericは結構エロイ

C#

src: class A<T> where T : A<T> { static A() { Console.WriteLine("init:" + typeof(T).Name); } } class AA : A<AA> { } class BB : A<BB> { } class CC : A<Program> { } //err! class Program { static void Main(string[] args) { AA a = new AA(); BB b = new BB(); } } disp</program></bb></aa></t></t>…