Check out example codes for "c# hello world". It will help you in understanding the concepts better.
Code Example 1
// Hello World! program
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}
Code Example 2
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
// To prevents the screen from
// running and closing quickly
Console.ReadLine();
}
}
}
Code Example 3
Console.WriteLine("Hello World!");
Learn ReactJs, React Native from akashmittal.com