Leggere in inglese

Condividi tramite


Errore del compilatore CS0210

È necessario specificare un inizializzatore in una dichiarazione fissa o using di istruzione

È necessario dichiarare e inizializzare la variabile in un' istruzione fixed. Per altre informazioni, vedere Codice unsafe e puntatori.

L'esempio seguente genera l'errore 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)
      {
      }
      */
   }
}

L'esempio seguente genera anche l'errore CS0210 perché l'istruzione using non dispone di inizializzatore.

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