编译器错误 CS0211
无法获取给定表达式的地址
可以采用字段、局部变量和指针间接寻址的地址,但不能采用两个局部变量之和的地址等。 有关详细信息,请参阅不安全代码和指针。
下面的示例生成 CS0211:
// CS0211.cs
// compile with: /unsafe
public class MyClass
{
unsafe public void M()
{
int a = 0, b = 0;
int *i = &(a + b); // CS0211, the addition of two local variables
// try the following line instead
// int *i = &a;
}
public static void Main()
{
}
}