共用方式為


編譯器錯誤 CS1010

更新:2007 年 11 月

錯誤訊息

常數中包含新行字元

未適當分隔字串

下列範例會產生 CS1010:

// CS1010.cs
class Sample
{
   static void Main()
   {
      string a = "Hello World;   // CS1010, add end quote
   }
}