我刚刚创建了一个 Hello World 来测试它:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Helloworld1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadLine();
}
}
}
无论我构建什么,我都会遇到相同的错误:
Error 1 Newline in constant AssemblyInfo.cs 11 28 Helloworld1
Error 2 Unrecognized escape sequence AssemblyInfo.cs 13 46 Helloworld1
Error 3 Syntax error, ']' expected AssemblyInfo.cs 36 43 Helloworld1
Error 4 ) expected AssemblyInfo.cs 36 43 Helloworld1
注意行号。这段代码没有 36 行!
有人可以告诉我发生了什么事。(而且,是的,我已经关闭并重新打开了我的 Visual Studio 2010 Pro。)