Leer en inglés

Compartir a través de


Error del compilador CS0210

Debe proporcionar un inicializador en una declaración de instrucción fija o using

Se debe declarar e inicializar la variable en una instrucción fixed. Para obtener más información, vea Código no seguro y punteros (Guía de programación de C#).

El ejemplo siguiente genera la advertencia CS0210:

C#
// 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)
      {
      }
      */
   }
}

El ejemplo siguiente también genera el error CS0210 porque la instrucción using no tiene inicializador.

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