Last active
September 29, 2022 05:39
-
-
Save rashedul-alam/e124c40d259a2fe8ed6d583b6fe30eac to your computer and use it in GitHub Desktop.
run C# in sublime text
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
{ | |
"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