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 Settingoption click on
Environment Variablesas 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 Frameworkenvironment. Select the
"Path"variable and click on the
Editbutton as shown below:
Step 3:We will see a list of different paths, click on the
Newbutton and then add the path where
.NET Frameworkis 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
.csextension.
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.cson cmd. This will create a
Hello.exefile.
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