更新:2007 年 11 月
错误消息
“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); } } |