In a project which target framework is 3.5 the following line compiles with MsBuild 4.0:
aEnumerable.Select(aMethod);
But MsBuild 3.5 requires me to write:
aEnumerable.Select(item => aMethod(item));
Will both binaries will run a machine without .NET Framework 4.0, but with .NET 3.5?
PS: While i showed an example using "method overload inference" the same happens with other "4.0" features (eg. "named parameters").
another title for this question could be: What C# 4.0/Visual Studio 2010 features are .NET 3.5 compatible?