4
Reply

How to write hello world in c#

Rinky Jain

Rinky Jain

Jul 7 2021 2:33 AM
211

Hello This testing
 

 

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

 


Answers (4)