编译器错误 CS0210
必须在 fixed 或 using
语句声明中提供初始值设定项
必须声明并初始化在 fixed 语句中的变量。 有关详细信息,请参阅不安全代码和指针。
以下示例生成 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)
{
}
*/
}
}
以下示例也生成 CS0210,因为 using
语句没有初始值设定项。
// 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");
}
}
}