Created
January 21, 2014 20:55
-
-
Save VladimirReshetnikov/8548187 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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