我为 Win8 启动 Visual Studio 2012,为新项目选择 C#,Windows 运行时组件,然后当我键入"cw+TAB+TAB" to print "Console.WriteLine();"
出现这一行:global::System.Console.WriteLine();
我的代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsRuntimeComponent1
{
public sealed class Class1
{
global::System.Console.WriteLine();
}
}
出现以下错误:
Error 1 Invalid token '(' in class, struct, or interface member declaration" ,
Error 2 The type or namespace name 'Console' does not exist in the namespace 'System' (are you missing an assembly
这些错误的答案在网上都是一样的:我必须将“.NetFramework”从 4.5 回滚到 4.0 - 但是,当我转到解决方案资源管理器的属性时,目标框架为空白并被禁用。我无法改变它,所以我该如何解决这个问题?
错误的解决方案可能不仅仅在于更改 NET 框架,请随时分享您对这个问题的了解。