編譯器錯誤 CS0244
'is' 或 'as' 在指標類型上都無效
is 和 as 運算子不適用於指標類型。 如需詳細資訊,請參閱 Unsafe 程式碼和指標。
下列範例會產生 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);
}
}