c# hello world example
Example 1: hello world program in c#
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}
Example 2: c# hello world
using System;
namespace HelloWorldApp {
class Program {
static void Main(string[] args) {
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}
Example 3: c# hello world
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
Console.ReadLine();
}
}
}
Example 4: hello world c#
Console.WriteLine("Hello World!");
Example 5: c# hello world
Console.WriteLine("Hello World!");