Skip to content

Instantly share code, notes, and snippets.

@atin360
Created June 12, 2013 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atin360/d2337e1d79af774d8eab to your computer and use it in GitHub Desktop.
Save atin360/d2337e1d79af774d8eab to your computer and use it in GitHub Desktop.
class MainClass
{
public static void Main (string[] args)
{
Console.WriteLine ("Hello World!");Type t = Type.GetType ("Mono.Runtime");
if (t != null)
Console.WriteLine ("You are running with the Mono VM");
else
Console.WriteLine ("You are running something else");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment