Skip to main content

About Visual Studio

Microsoft Visual Studio 2017 (Latest Build)

Microsoft Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs, as well as web sites, web apps, web services and mobile apps. Visual Studio uses Microsoft software development platforms such as Windows API, Windows Forms, Windows Presentation Foundation, Windows Store and Microsoft Silverlight. It can produce both native code and managed code.

Visual Studio includes a code editor supporting IntelliSense (the code completion component) as well as code refactoring. The integrated debugger works both as a source-level debugger and a machine-level debugger. Other built-in tools include a code profiler, forms designer for building GUI applications, web designer, class designer, and database schema designer. It accepts plug-ins that enhance the functionality at almost every level—including adding support for source control systems (like Subversion) and adding new toolsets like editors and visual designers for domain-specific languages or toolsets for other aspects of the software development lifecycle (like the Team Foundation Server client: Team Explorer).
Visual Studio supports 36 different programming languages and allows the code editor and debugger to support (to varying degrees) nearly any programming language, provided a language-specific service exists. Built-in languages include C,[6] C++, C++/CLI, Visual Basic .NET, C#, F#,[7] JavaScript, TypeScript, XML, XSLT, HTML and CSS. Support for other languages such as Python,[8] Ruby, Node.js, and M among others is available via plug-ins. Java (and J#) were supported in the past.
The most basic edition of Visual Studio, the Community edition, is available free of charge.

Visual Studio 2017 logo and wordmark.svg
Screenshot of Visual Studio 2013, editing a program's C++ source code
Screenshot of Visual Studio 2013, editing a program's C++ source code
Developer(s) Microsoft
Stable release 2017 (March 7, 2017; 10 months ago) [±][1]
Written in C++ and C#[2]
Operating system
  • Windows 7 SP1 and later
  • Windows Server 2008 R2 SP1 and later[3]
Available in Chinese, Czech, English, French, German, Italian, Japanese, Korean, Polish, Portuguese (Brazil), Russian, Spanish and Turkish[4]
Type Integrated development environment
License Freemium[5]
Website visualstudio.com

Comments

Popular posts from this blog

Image Captcha Example in Windows Form C#

A computer program or system intended to distinguish human from machine input, typically as a way of thwarting spam and automated extraction of data from websites. It is generally used to check whether you are a robot or a uman being. There are two basic alternatives on how to generate the content of the captcha Submit a string that should be used Automatically generate a random string. If this alternative is chosen then the user of the library should save the created string and compare it to what the user enters. CAPTCHA or Completely Automated Public Turing test to Tell Computers and Humans Apart is a technique to distinguish between humans and computers. CAPTCHA is mainly used as a security check to ensure only human users can pass through. Generally, computers or bots are not capable of solving a captcha .     Add some control in web form .. take 2 button control one button control is used to generate random captcha code and second one is used t...

Query String Example in ASP.NET

    Query Strings in ASP.Net A QueryString is a collection of characters input to a computer or web browser. A Query String is helpful when we want to transfer a value from one page to another. When we need to pass content between the HTML pages or aspx Web Forms in the context of ASP.NET, a Query String is very easy to use and the Query String follows a separating character, usually a Question Mark (?). It is basically used for identifying data appearing after this separating symbol. A Query String Collection is used to retrieve the variable values in the HTTP query string. If we want to transfer a large amount of data then we can't use the Request.QueryString . Query Strings are also generated by form submission or can be used by a user typing a query into the address bar of the browsers. Query Strings are contained in request headers. A Query String collection is a parsed version of the QUERY_STRING variable in the Server Variables collect...

Digital Clock in ASP.NET with using C#.

Want to digital clock on web page this is way to make digital clock.