We can Give You Tutorial of C#, Visual Studio, Html, CSS, Javascript Etc. Programming languages in Programming Kida Blog by Ganesh Chorghe & Salman Attar.

Latest Post by Programmingkida.Com

Post Top Ad

Your Ad Spot

Friday, 30 August 2019

Introduction of visual studio / History of visual studio

What is Visual studio with C#.net ?
Welcome to www.programmingkida.tech.... !
Visual_Studio, Introduction of Visual Studio, Programming Kida, www.programmingkida.tech, History of visual studio


Introduction of visual studio with C#.net

  • When you write the C# program then , you required one specific IDE for compile & run your program. By using IDE you can do develop directly Application
  • IDE means Integrated Development Environment
  • Visual Studio IDE (Integrated Development Environment) is a creative launching platform that you can using to edit, debug, and build your application code, and then publish the application software. 
  • Visual studio support the 36 Programming languages as well as debugging and code editor.
  • Now Visual Studio is a one specific IDE which for used write & compile program and develop application for C#.net. It's target the .net framework. 
  • Visual C# full supports the Visual Studio Class designer, Forms designer, and Data designer .
  • Visual Studio is a most popular IDE in a world. visual studio present by Microsoft corporation. visual studio mostly used for create console and GUI (Graphical User Interface) application.
  • Microsoft Visual Studio is a powerful IDE for Design And Development. Visual Studio do the work on many language's , including C# , one of .net language.
  • visual studio is best platform for developing application by using C#.net , Because they both are Microsoft product.
  • visual studio is used to develop application programs for Microsoft Windows, as well as windows based application, web sites, web applications and web services. 


*Version History of visual studio

Product nameCode nameVersion
number

Supported .NET
Framework versions
Supported .NET
Core versions
Release date
Visual Studio 2019Dev1616.0
3.5 - 4.81.1, 2.1, 2.2, 3.0 Preview2 April 2019 
Visual Studio 2017Dev1515.0
3.5 – 4.7.11.0-1.1, 2.07 March 2017
Visual Studio 2015Dev1414.0
2.0 – 4.6.21.020 July 2015
Visual Studio 2013Dev1212.0
2.0 – 4.5.2-17 October 2013
Visual Studio 2012Dev1111.0
2.0 – 4.5.2-12 September 2012
Visual Studio 2010Dev1010.0
2.0 – 4.0-12 April 2010
Visual Studio 2008Orcas9.0
2.0, 3.0, 3.5-19 November 2007
Visual Studio 2005Whidbey8.0
2.0, 3.0-7 November 2005
Visual Studio .NET 2003Everett7.1
1.1-24 April 2003
Visual Studio .NET (2002)Rainier7.0
1.0-13 February 2002
Visual Studio 6.0Aspen6.0
--June 1998
Visual Studio 97Boston5.0
--February 1997



How to create and run a console application
    1. click on Visual Studio , and start it.
    2. choose File→ New→ Project.
      The New Project dialog box open.
    3. Expand Installed and Templates→ expand Visual C#, and then choose Console Application.
    4. In the Name box, type a name for your project, and then click the OK .
      The new project in Solution Explorer.
    5. Replace the code of Program.cs with the following code.
      using System;
      namespace consoleapp
      {
      class Hello
      {
      static void Main()
      {
      Console.WriteLine("Hello World!\n\n");
      Console.WriteLine("Press any key to exit.");
      }
      }
      }
    6. Click the F5 key to run the program and show the result.


  •  Output
         
       Hello world

       Press any key to exit.






                                                                                      Article by : Ganesh Chorghe











1 comment:

Pages