
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 2008 Alex Henderson
Theme design by
Bryan Bell
newtelligence dasBlog 1.9.6264.0

| Page rendered at Monday, September 08, 2008 9:03:07 AM (New Zealand Standard Time, UTC+12:00)