使用英语阅读

通过


编译器错误 CS0145

常量字段要求提供一个值

必须初始化 const 变量。 有关详细信息,请参阅常量

以下示例生成 CS0145:

// CS0145.cs  
class MyClass  
{  
   const int i;   // CS0145  
   // try the following line instead  
   // const int i = 0;  
  
   public static void Main()  
   {  
   }  
}