Tuesday, July 31, 2007

Friday, July 20, 2007

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 as
System.Collections.Generic.List`1[[System.Int32]]

Dictionary> as System.Collections.Generic.Dictionary`2[[System.String],[System.Collections.Generic.List`1[[System.Int32]]]]

The weird '1 shows that it expects 1 parameter and '2 it expects 2 parameters, isn't it bizarre.

Rock it!

Thursday, July 19, 2007

Cool checkin policy

Nice idea for controlling methods comments.

Have Fun!

Monday, July 16, 2007

Serialization in WCF

WCF has made possible to transmit IList, IDictionary etc which was not possible in WebServices. Its a nice article discussing WCF Serialization in detail.

Thursday, July 05, 2007

Google Maps gettings better and better and better

The new drag n drop your route is awesome, whenever you drag particular road to other it automatically calculates the directions for you.