Wednesday, November 16, 2011

C# Windows Forms

Here we go with some basics concepts of C# Windows Forms.

Step 1:- Go to File->New->Project

Step 2:- Select your language C# and Windows Forms Application in template


Now press on the OK. You can see the your C# Window Form. This is your first form. On the Left of the visual studio you can see the toolbar which contain tools. In the next blog we will see How to add controls in our C# forms and how we can use them In the next blog we also study about solution explorer, toolbar.

C# Window application


Now above you can see C# Windows Form. To execute that project either press F5, or click
Debug -> Start Debugging.

Saturday, November 12, 2011

C# Console Output


C# Console Output


This blog will give insight of C# Console output

Console.Writeline("");

Whatever is written in the small parentheses between the double quotes will be written on to the Console screen at time of execution
Example of C# Console output CILCK HERE.

C# Console Input


Get input from user in C# Console


we are going to take a look some concepts how we can get the data from the user in C# console application.

We already used these concepts in our previous applications.

Like C# Console Calculator its uses the concept of C# console input.

To Know more about it click here