更新:2007 年 11 月
错误消息
常数中有换行符一个
下面的示例生成 CS1010:
// CS1010.cs
class Sample
{
static void Main()
{
string a = "Hello World; // CS1010, add end quote
}
} | |
更新:2007 年 11 月
一个
下面的示例生成 CS1010:
// CS1010.cs
class Sample
{
static void Main()
{
string a = "Hello World; // CS1010, add end quote
}
} | |