Last active
June 22, 2025 08:04
-
-
Save YannMjl/80d980a86f30f68ea2b9d72fd2cdbbaf to your computer and use it in GitHub Desktop.
HelloWorld program in C#
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
using System; | |
namespace HelloWorld | |
{ | |
class helloWorld | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello World, This is my first C# program"); | |
Console.ReadKey(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment