Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Neither 'is' nor 'as' is valid on pointer types
The is and as operators are not valid for use on pointer types. For more information, see Unsafe Code and Pointers.
The following sample generates 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);
}
}
.NET feedback
.NET is an open source project. Select a link to provide feedback: