解决方法
如果一切都失败了,试试吧.我刚刚在VS2010b2中测试了以下内容,编译目标2.0:
using System; class Program { static void Main() { Write(); Write(msg: "world"); Console.ReadLine(); } static void Write(string msg = "Hello") { Console.WriteLine(msg); } }
这使用了两个新的C#4.0语言功能,它们使用.NET 2.x / 3.x / CLR 2中也存在的元数据;它在我的常规(CLR 2)机器上执行正常(我的VS2010b2是一个VM).所以我总结“是的,对某些功能”.显然,如果你使用一个框架相关的功能(动态等),它就不会那么好.
编辑:重新评论;我在命令行尝试了csc,默认情况下它确实以CLR 4为目标;我会试着看看我是否可以把它作为目标CLR 2(就像VS显然可以).不幸的是,它不再包含构建输出窗口中的(伪造,顺便说一句)命令行……
更新:一些“知情人”回来了:
Pass /nostdlib and a reference to the 2.0 mscorlib.dll.
果然:
C:\Windows\Microsoft.NET\Framework\v4.0.21006>csc /nostdlib /reference:%systemRo ot%\microsoft.net\framework\v2.0.50727\mscorlib.dll /out:c:\my.exe /target:exe " C:\Users\marc\Documents\Visual Studio 2010\Projects\ConsoleApplication6\ConsoleA pplication6\program.cs" Microsoft (R) Visual C# 2010 Compiler version 4.0.21006.1 copyright (C) Microsoft Corporation. All rights reserved.
工作正常(exe工作在我的非4.0机器上).图片来源:Kevin Pilch-Bisson