
Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
First (to OP) I suspect it relates to .NET 2.0, not C# 2.0;
unfortunately, above "2" the three numbers (.NET version, C# version
and CLI version) get out of step, so it gets very confusing...
> Note that really you'll be testing it against .NET 3.5, not C# 3.
> It's
> not like you can download C# 3 itself - it's just part of .NET 3.5.
But (AFAIK, and tested) once you have the C# 3 compiler (by
downloading .NET 3.5) you can still use it to build vanilla 2.0 code,
even using the new language features like lambda (but not LINQ) - so
*technically* you could still be testing .NET 2.0 with the C# 3
compiler...
Please correct me if I am wrong...
Not that it helps the OP ;-p
Marc
Jon Skeet [C# MVP] - 22 Oct 2007 11:44 GMT
> First (to OP) I suspect it relates to .NET 2.0, not C# 2.0;
> unfortunately, above "2" the three numbers (.NET version, C# version
[quoted text clipped - 8 lines]
> *technically* you could still be testing .NET 2.0 with the C# 3
> compiler...
Absolutely. Another reason to disambiguate between C# version and .NET
version.
(And I believe you *could* even use query expressions, if you happened
to have classes providing Select, Where etc as required :)

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too