4
Answers

How to write hello world in c#

Rinky Jain

Rinky Jain

3y
247
1

Hello This testing
 

 

// Hello World! program
namespace HelloWorld
{
    class Hello {         
        static void Main(string[] args)
        {
            System.Console.WriteLine("Hello World!");
        }
    }
}

 

Answers (4)