Posts Tagged ‘C#2.0’

Using Extensionmethods in .NET 2.0 projects . . . (2008-7-28)

While reading “C# in depth” by Jon Skeet I discovered a little gem. It is possible to use extension methods in .NET 2.0 projects when you’re using VS2008 and its multitargeting abillities.
Extension methods are essentially only static methods in utillity classes with some constraints around them (the utility class has to be static too for [...]