閱讀英文

共用方式為


編譯器錯誤 CS0209

在 fixed 陳述式中宣告的區域變數類型必須為指標類型

fixed 陳述式 中所宣告的變數必須是指標。 如需詳細資訊,請參閱 Unsafe 程式碼和指標

下列範例會產生 CS0209:

// CS0209.cs  
// compile with: /unsafe  
  
class Point  
{  
   public int x, y;  
}  
  
public class MyClass  
{  
   unsafe public static void Main()  
   {  
      Point pt = new Point();  
  
      fixed (int i)    // CS0209  
      {  
      }  
      // try the following lines instead  
      /*  
      fixed (int* p = &pt.x)  
      {  
      }  
      fixed (int* q = &pt.y)  
      {  
      }  
      */  
   }  
}