Derleyici Hatası CS0283
'type' türü const olarak bildirilemez
Sabit bildirimde belirtilen tür , , sbyte
, ushort
, short
, uint
, , int
, , ulong
, float
bool
decimal
long
double
string
char
, bir sabit listesi türü veya değeri null
atanmış 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.
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;
}
}
.NET geri bildirimi
.NET, açık kaynak bir projedir. Geri bildirim sağlamak için bir bağlantı seçin: