A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/how-to-execute-c-sharp-program-on-cmd-command-line/ below:

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

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

Last Updated : 12 Jul, 2025

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

. Since the C# is a lot similar to other widely used languages syntactically, it is easier to code and learn in C#. Programs can be written in C# in any of the widely used text editors like Notepad++, gedit, etc. or on any of the compilers. After writing the program save the file with the extension

.cs

. There are various online IDEs such as

GeeksforGeeks ide

, CodeChef ide, etc. which can be used to run C# programs without installing. One can also use command-line options to run a C# program.

Sample C# Program to execute on Command-Line: csharp
// C# program to print Hello World!
using System;

// namespace declaration
namespace HelloWorldApp {

// Class declaration
class Geeks {

    // Main Method
    static void Main(string[] args)
    {

        // statement
        // printing Hello World!
        Console.WriteLine("Hello World!");

        // To prevents the screen from
        // running and closing quickly
        Console.ReadKey();
    }
}
}
Setting up the Environment for C# CompilerStep 1:

Go to

Control Panel -> System and Security -> System

. Under

Advanced System Setting

option click on

Environment Variables

as shown below:

  Step 2:

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:

  Step 3:

We will see a list of different paths, click on the

New

button and then add the path where

.NET Framework

is installed.

  Step 4:

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

.

  Steps to Execute C# Program on cmdStep 1:

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

.cs

extension.

  Step 2:

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.

  Step 3:

Now there are two ways to execute the H

ello.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.



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4