Created
April 16, 2015 05:30
-
-
Save kangaroo/ba08257a2d5061c374d2 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
using System; | |
using OSX.Foundation; | |
class Driver { | |
static void Main (string[] args) { | |
var str = new NSString ("This is an objc string"); | |
Console.WriteLine ("Dump: {0} {1}", str == null, str); | |
} | |
} | |
basalt:OSX.x64.Debug plasma$ ./corerun -c . hw.exe | |
name: NSString | |
Dump: False This is an objc string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment