Ler em inglês

Partilhar via


Erro do compilador CS0210

Você deve fornecer um inicializador em uma declaração fixa ou using de instrução

Você deve declarar e inicializar a variável em uma instrução fixa. Para obter mais informações, consulte Código e ponteiros não seguros.

O exemplo a seguir gera 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)
      {
      }
      */
   }
}

O exemplo a seguir também gera CS0210 porque a using instrução não tem inicializador.

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