2
votes
LINQ on the .NET 2.0 Runtime
Short answer:
LINQ to Objects: yes (IEnumerable<T>)
LINQ to SQL/Entities: no (IQueryable<T>)
…
6
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 …
