Erro do Compilador CS0210
Forneça um inicializador em uma declaração de instrução fixa ou using
Você deve declarar e inicializar a variável em uma instrução fixa. Para obter mais informações, consulte Código não seguro e ponteiros.
O seguinte exemplo gera o erro 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)
{
}
*/
}
}
A amostra a seguir também gera CS0210 porque a instrução using
não tem nenhum 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");
}
}
}
Comentários do .NET
O .NET é um projeto código aberto. Selecione um link para fornecer comentários: