Printing a Hello World Text in CSharp
Hello to everyone,
In this article, I will give information about how to write hello world in CSharp.
You can easily do this using the code below.
using System;
namespace Hello_World_Example
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}
When you run the above code, you will see a result similar to the one below.
As you can see, Hello World has been written.
Good luck to everyone, in business and life
102 Views