英語で読む

次の方法で共有


コンパイラ エラー CS0283

型 'type' を const 宣言することはできません

定数宣言で指定された型は、bytesbyteushortshortuintintulonglongcharfloatdoubledecimalboolstring列挙型、または null 値が割り当てられている参照型である必要があります。 各定数式では、対象の型の値、または対象の型に暗黙的に変換できる型の値を生成する必要があります。

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

// CS0283.cs  
struct MyTest  
{  
}  
class MyClass
{  
    // To resolve the error but retain the "const-ness",  
    // change const to readonly.  
    const MyTest test = new MyTest();   // CS0283  
  
    public static int Main() {  
        return 1;  
    }  
}