Skip to content

Instantly share code, notes, and snippets.

@rashedul-alam
Last active September 29, 2022 05:39
Show Gist options
  • Save rashedul-alam/e124c40d259a2fe8ed6d583b6fe30eac to your computer and use it in GitHub Desktop.
Save rashedul-alam/e124c40d259a2fe8ed6d583b6fe30eac to your computer and use it in GitHub Desktop.
run C# in sublime text
{
"cmd" : ["csc", "-nologo", "$file", "&&", "${file_base_name}.exe"],
"path": ""
"selector" : "source.cs",
"shell":true,
"file_pattern": ["*.cs" , "*.csx"],
"working_dir" : "$file_path"
}
// Hello World! program
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment