I support the .NET 2.0 library (currently using Visual Studio 2013).
I used the code checking tool in the library code and was surprised when the tool suggested using a statement ??or lambdas instead of some code.
I was even more surprised when I applied the proposed changes, and the library was successfully built after that.
Why can the c library Target Frameworkinstalled on .NET Framework 2.0can be built with the new C # functions in this code?
Can I use the new C # features when creating for earlier versions of the .NET Framework? I mean, library users can only have the .NET Framework 2.0, and I want them to be able to use the library, even if I use lambdas in this code.
source
share