閱讀英文

共用方式為


編譯器錯誤 CS0572

'type': 不可透過運算式參考類型; 請嘗試改用 'path_to_type'

已嘗試透過識別項存取類別的成員,在此情況下不允許這麼做。

下列範例會產生 CS0572:

C#
// CS0572.cs  
using System;  
class C  
{  
   public class Inner  
   {  
      public static int v = 9;  
   }  
}  
  
class D : C  
{  
   public static void Main()  
   {  
      C cValue = new C();  
      Console.WriteLine(cValue.Inner.v);   // CS0572  
      // try the following line instead  
      // Console.WriteLine(C.Inner.v);  
   }  
}