Getting Output

I try to simplify this as much as possible. You can write 1000, 10000 or even 50000 lines of code. How will you check whatever code you've written is correct? You need to Run(Compile) the code and if system is doing whatever you expected than whatever code you've written is correct.

During this entire walkthrough we going to use a user friendly medium called Console for getting output and also for giving input. (There are lot of other mediums also like MessageBox, Notepad file, Excel file etc, since console is easily understandable we going to use this for now. In Upcoming articles we going to study something called File handling where we'll study how to use files to communication to system). Watch the below code section and write your First code.

CODE

static void Main(string[] args) {
    Console.WriteLine("Hello World!");
}


(Click Here, For more exercises)