閱讀英文

共用方式為


編譯器錯誤 CS0150

必須是常數值

找到必須有常數的變數。 如需詳細資訊,請參閱 switch

下列範例會產生 CS0150:

// CS0150.cs  
namespace MyNamespace  
{  
   public class MyClass  
   {  
      public static void Main()  
      {  
         int i = 0;  
         int j = 0;  
  
         switch(i)  
         {  
            case j:   // CS0150, j is a variable int, not a constant int  
            // try the following line instead  
            // case 0:  
         }  
      }  
   }  
}  

以變數值指定並以陣列初始設定式初始化陣列大小時,也會產生這個錯誤。 若要移除此錯誤,請以一或多個個別陳述式初始化陣列。

// CS0150.cs  
    namespace MyNamespace  
    {  
        public class MyClass  
        {  
            public static void Main()  
            {  
                int size = 2;  
                double[] nums = new double[size] { 46.9, 89.4 }; //CS0150  
                // Try the following lines instead  
                // double[] nums = new double[size];  
                // nums[0] = 46.9;
                // nums[1] = 89.4;  
            }  
        }  
  
    }