Skip to content

Instantly share code, notes, and snippets.

@idiom
Last active August 29, 2015 14:23
Show Gist options
  • Save idiom/b3a0ba2db9423f888d28 to your computer and use it in GitHub Desktop.
Save idiom/b3a0ba2db9423f888d28 to your computer and use it in GitHub Desktop.
HelloWorld - C#
using System;
public class Hello1
{
public static void Main()
{
try
{
System.Console.WriteLine("Hello from C#");
}
catch(Exception e)
{
throw(e);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment