14
votes
C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008
You can use any new C# 3.0 feature that is handled by the compiler by emitting 2.0-compatible IL and doesn't reference any of the new 3.5 assemblies:
Lambdas (used as Func<.. …
5
votes
How do the .NET Framework, CLR and Visual Studio version numbers relate to each other?
Note that while 3.0 only added new assemblies (same CLR), 3.5 added new assemblies, new compiler, and updated the CLR to SP1 level.
Framework 4.0 will be a whole new CLR (4.0, no CLR 3.x) w …
1
vote
Recommended Post-SP1 Visual Studio 2008 Hotfixes
All the VS2008 hotfixes are posted in the MSDN Code Gallery. You can …
