Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created January 21, 2014 20:55
Show Gist options
  • Select an option

  • Save VladimirReshetnikov/8548187 to your computer and use it in GitHub Desktop.

Select an option

Save VladimirReshetnikov/8548187 to your computer and use it in GitHub Desktop.
class Program
{
unsafe static void Main()
{
void* x = null;
var y = (int?) x;
var z = x as int?; // error CS0244: Neither 'is' nor 'as' is valid on pointer types
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment