英語で読む

次の方法で共有


コンパイラ エラー CS1038

#endregion ディレクティブが必要です。

#region ディレクティブに一致する #endregion ディレクティブがありませんでした。

次の例では CS1038 が生成されます。

// CS1038.cs  
#region testing  
  
public class clx  
{  
   public static void Main()  
   {  
   }  
}  
// CS1038  
// uncomment the next line to resolve  
// #endregion