Friday 14 August 2015

C sharp tutorials in hindi and urdu printing hello world



When visual studio has installed correctly follow the instructions bellow for c sharp settings.


  1.        Launch the visual studio
  2.        Select visual c# development settings
  3.        Click on start visual studio


Wait for moment, a new window will appear,

  1. Change the name for you application
  2. Select Console application
  3. Click Enter
--------------------------------------------------------------------------------------------------------------------------
This is the basic structure of the program. The code used in the program in the video is given bellow.

using System;


class Program
{
    public static void Main()
    {
        
        Console.WriteLine ("Welcome to C Sharp !"); 
    }
}

            




No comments:

Post a Comment