編譯器錯誤 CS1010
常數中包含新行字元
未適當地分隔 string 。
下列範例會產生 CS1010:
// CS1010.cs
class Sample
{
static void Main()
{
string a = "Hello World; // CS1010
// Use the following line, with end quote before semicolon:
string a = "Hello World"; //
}
}