编译器错误 CS0244
"is" 和 "as" 在指针类型上都无效
is 和 as 运算符在指针类型上的使用是无效的。 有关详细信息,请参阅不安全代码和指针。
以下示例生成 CS0244:
// CS0244.cs
// compile with: /unsafe
class UnsafeTest
{
unsafe static void SquarePtrParam (int* p)
{
bool b = p is object; // CS0244 p is pointer
}
unsafe public static void Main()
{
int i = 5;
SquarePtrParam (&i);
}
}