Baca dalam bahasa Inggris

Bagikan melalui


Compiler Error CS0133

Ekspresi yang ditetapkan ke 'variable' harus konstanta

Variabel const tidak dapat mengambil sebagai nilainya ekspresi yang tidak konstan. Liihat Konstanta untuk informasi selengkapnya.

Contoh berikut menghasilkan CS0133:

C#
// CS0133.cs  
public class MyClass  
{  
   public const int i = c;   // CS0133, c is not constant  
   public static int c = i;  
   // try the following line instead  
   // public const int i = 6;  
  
   public static void Main()  
   {  
   }  
}