Tip/Trick: Building a ToJSON() Extension Method using .NET 3.5
Posted by: ScottGus Blog,
on 02 Oct 2007 |
View original | Bookmarked: 0 time(s)
Earlier this year I blogged about a new language extensibility feature of C# and VB called "Extension Methods". Extension methods allow developers to add new methods to the public contract of an existing CLR type, without having to sub-class it or recompile the original type. In doing so they enable a variety of useful scenarios (including LINQ). They also provide a really convenient way to add a dash of "syntactic sugar" into your code. Over the last few...