720 views
Hello World in C#
C#
- // Hello World in Microsoft C# ("C-Sharp").
- using System;
- class HelloWorld
- {
- public static int Main(String[] args)
- {
- Console.WriteLine("Hello, World!");
- return 0;
- }
- }
Submitted by miguelSantirso over 2 years ago — last modified less than a minute ago