How to Execute C# Program on cmd (command-line)?

Configurare noua (How To)

Situatie

C# is a general-purpose, modern and object-oriented programming language pronounced as “C sharp”. C# is among the languages for Common Language Infrastructure and the current version of C# is version 8.0. C# is a lot similar to Java syntactically and is easy for the users who know C, C++ or Java.

Solutie

Pasi de urmat
Setting up the Environment for C# Compiler

Step 1: Go to Control Panel -> System and Security -> System. Under Advanced System Setting option click on Environment Variables as shown below:

Advanced System Settings

Setting up Environment variable

Now, we have to alter the “Path” variable under System variables so that it also contains the path to the .NET Framework environment. Select the “Path”variable and click on the Edit button as shown below:

Lightbox

We will see a list of different paths, click on the New button and then add the path where .NET Framework is installed.

CSharp-Command-Prompt-Environment-Setup

Click on OK, Save the settings and it is done! Now to check whether the environment setup is done correctly, open command prompt and type csc.

CSharp-Command-Prompt-02

Open the text editor like Notepad or Notepad++, and write the code that you want to execute. Now save the file with .cs extension.

CSharp-Command-Prompt-00

Compile your C# source code with the use of command:

csc File_name.cs

If your program has no error then it will create a filename.exe file in the same directory where you have saved your program. Suppose you saved the above program as Hello.cs. So you will write csc Hello.cs on cmd. This will create a Hello.exe file.

Now there are two ways to execute the Hello.exe. First, you have to simply type the filename i.e Hello on the cmd and it will give the output. Second, you can go to the directory where you saved your program and there you find filename.exe. You have to simply double-click that file and it will give the output.

CSharp-Command-Prompt-04

Using .exe file:

CSharp-Command-Prompt-05

Tip solutie

Permanent

Voteaza

(1 din 2 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?