Home > Article > Development Tools > How to run c# in sublime
To run C# code in Sublime, follow these steps: Install Mono (.NET implementation). Install the C# compiler (csc). Install the C# plugin for Sublime ("C# Complete"). Create and save a C# file with a .cs extension. Write C# code. Compile the code using the csc compiler. Use mono to run the executable.
How to run C in Sublime
#Step 1: Install Mono
Mono is an open source .NET implementation that allows you to run C# code on non-Windows systems. Go to the Mono website to download and install Mono.
Step 2: Install the C# compiler
The C# compiler is the tool needed to convert C# code into machine code. Install the C# compiler using the following command:
<code>sudo apt-get install mono-csc</code>
Step 3: Install the C# plugin for Sublime
Sublime Text does not have built-in C# support, so you need to install a plugin. Go to Package Control and install "C# Complete" which will provide syntax highlighting, auto-completion and code navigation for your C# code.
Step 4: Create a C# file
Use Sublime to create a new file and save it with a .cs
extension. For example, HelloWorld.cs
.
Step 5: Write C# Code
Write your C# code in the .cs
file. Sample code:
<code class="csharp">using System; public class HelloWorld { public static void Main(string[] args) { Console.WriteLine("Hello World!"); } }</code>
Step 6: Compile the code
Open a terminal window and navigate to the directory containing the .cs
file. Use the csc
compiler to compile the code:
<code>csc HelloWorld.cs</code>
Step 7: Run the program
After successful compilation, an executable file will be generated (HelloWorld.exe
). Run the program:
<code>mono HelloWorld.exe</code>
The output should be:
<code>Hello World!</code>
The above is the detailed content of How to run c# in sublime. For more information, please follow other related articles on the PHP Chinese website!