Generics type full name representation
Folks,
Just got to know how generics are represented internally, you might need it while using reflection or with WCF proxy generation or whenever you need to know your custom defined generic type.
List
System.Collections.Generic.List`1[[System.Int32]]
Dictionary
The weird '1 shows that it expects 1 parameter and '2 it expects 2 parameters, isn't it bizarre.
Rock it!
|