閱讀英文

共用方式為


編譯器錯誤 CS0210

您必須在固定或 using 語句宣告中提供初始化表達式

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

下列範例會產生 CS0210:

// CS0210a.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)    // CS0210
      {
      }
      // try the following lines instead
      /*
      fixed (int* p = &pt.x)
      {
      }
      fixed (int* q = &pt.y)
      {
      }
      */
   }
}

下列範例也會產生 CS0210,因為 using 語句 沒有初始化運算式。

// CS0210b.cs

using System.IO;
class Test
{
   static void Main()
   {
      using (StreamWriter w) // CS0210
      // Try this line instead:
      // using (StreamWriter w = new StreamWriter("TestFile.txt"))
      {
         w.WriteLine("Hello there");
      }
   }
}