What is Visual studio with C#.net ?
Welcome to www.programmingkida.tech.... ! |
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 name | Code name | Version number | Supported .NET Framework versions | Supported .NET Core versions | Release date | ||
---|---|---|---|---|---|---|---|
Visual Studio 2019 | Dev16 | 16.0 | 3.5 - 4.8 | 1.1, 2.1, 2.2, 3.0 Preview | 2 April 2019 | ||
Visual Studio 2017 | Dev15 | 15.0 | 3.5 – 4.7.1 | 1.0-1.1, 2.0 | 7 March 2017 | ||
Visual Studio 2015 | Dev14 | 14.0 | 2.0 – 4.6.2 | 1.0 | 20 July 2015 | ||
Visual Studio 2013 | Dev12 | 12.0 | 2.0 – 4.5.2 | - | 17 October 2013 | ||
Visual Studio 2012 | Dev11 | 11.0 | 2.0 – 4.5.2 | - | 12 September 2012 | ||
Visual Studio 2010 | Dev10, | 10.0 | 2.0 – 4.0 | - | 12 April 2010 | ||
Visual Studio 2008 | Orcas | 9.0 | 2.0, 3.0, 3.5 | - | 19 November 2007 | ||
Visual Studio 2005 | Whidbey | 8.0 | 2.0, 3.0 | - | 7 November 2005 | ||
Visual Studio .NET 2003 | Everett | 7.1 | 1.1 | - | 24 April 2003 | ||
Visual Studio .NET (2002) | Rainier | 7.0 | 1.0 | - | 13 February 2002 | ||
Visual Studio 6.0 | Aspen | 6.0 | - | - | June 1998 | ||
Visual Studio 97 | Boston | 5.0 | - | - | February 1997 |
How to create and run a console application
- click on Visual Studio , and start it.
- choose File→ New→ Project.The New Project dialog box open.
- Expand Installed and Templates→ expand Visual C#, and then choose Console Application.
- In the Name box, type a name for your project, and then click the OK .The new project in Solution Explorer.
- 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.");}}
- Click the F5 key to run the program and show the result.
- Output
Hello world
Press any key to exit.
Article by : Ganesh Chorghe
It's very important for B.sc
ReplyDelete