Derleyici Hatası CS0210
Sabit veya using
deyim bildiriminde başlatıcı sağlamanız gerekir
Değişkeni sabit bir deyimde bildirmeniz ve başlatmanız gerekir. Daha fazla bilgi için bkz . Güvenli Olmayan Kod ve İşaretçiler.
Aşağıdaki örnek CS0210 oluşturur:
// 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şağıdaki örnek, deyiminde using
başlatıcı olmadığından CS0210 da oluşturur.
// 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");
}
}
}
.NET geri bildirimi
.NET, açık kaynak bir projedir. Geri bildirim sağlamak için bir bağlantı seçin: