영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0210

고정 또는 using 문 선언에 이니셜라이저를 제공해야 합니다.

fixed 문에서 변수를 선언하고 초기화해야 합니다. 자세한 내용은 안전하지 않은 코드 및 포인터를 참조하세요.

다음 샘플에서는 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)
      {
      }
      */
   }
}

다음 샘플에서는 문에 이니셜라이저가 없으므로 using CS0210도 생성합니다.

// 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");
      }
   }
}