Posts

Showing posts from March, 2017

Getting Started With Very First C# Program.

Creating a new Console Application in Visual Studio. Open a Visual Studio in your system.(You can find it in the Start Menu Programs.) You can create a new project in different ways Using classic method, Goto File -> New -> New Project. Using Quick Method, On Start Page Click on Create a New Project . After Clicking the Create New Project, You will get a template window. Select the Visual C# in side menu. Select the Create new Console Application . Name the Project (any name you want e.g. helloApp). Select the Directory where you want to save it. And Click Create button. Writing Your First Code in C#. After Creating a new project you will get the code like bellowed.   using System;  namespace helloApp        {             class Program              {                   static void Main(string[] args)                   {                       //Here goes your code...                   }              }        } You need to Write Console.WriteLine("Whatever You Want to Print on