İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0283

'type' türü const olarak bildirilemez

Sabit bildirimde belirtilen tür , , sbyte, ushort, short, uint, , int, , ulong, floatbooldecimallongdoublestringchar, bir sabit listesi türü veya değeri nullatanmış bir başvuru türü olmalıdır.byte Her sabit ifade, hedef türün veya örtük olarak hedef türe dönüştürülebilir bir türün değerini vermelidir.

Örnek

Aşağıdaki örnek CS0283 oluşturur.

// 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;  
    }  
}