
Friday, June 29, 2007
No so much for my future reference, but to refer people too should the topic of how generic types are represented by name ever crops up again.
| Type |
FullName |
| typeof (List<>).FullName |
System.Collections.Generic.List`1 |
| typeof(List<int>).FullName |
System.Collections.Generic.List`1[[System.Int32]] |
| typeof(Dictionary<,>).FullName |
System.Collections.Generic.Dictionary`2 |
| typeof(Dictionary<string,int>).FullName |
System.Collections.Generic.Dictionary`2[[System.String],[System.Int32]] |
| typeof(Dictionary<string,List<int>>).FullName |
System.Collections.Generic.Dictionary`2[[System.String],[System.Collections.Generic.List`1[[System.Int32]]]] |
|
© Copyright 2009 Alex Henderson
Theme design by
Bryan Bell
newtelligence dasBlog 1.9.6264.0

| Page rendered at Tuesday, January 06, 2009 1:19:44 PM (New Zealand Daylight Time, UTC+13:00)