What is Microsofts Visual Studio?
Microsoft Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs for Microsoft Windows, 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 supports 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,C++ and C++/CLI (via Visual C++), VB.NET (via Visual Basic .NET), C# (via Visual C#), F# (as of Visual Studio 2010) and TypeScript (as of Visual Studio 2013 Update 2).
Microsoft provides a free version of Visual Studio called the Community edition that supports plugins and is available at no cost.
Click Here to Download :- https://www.visualstudio.com/downloads/
Difference between "New Web Site" and "New Project" in Visual Studio
The simple answers are as follows:
New Web Site >- creates code behind pages that are compiled at the server when page is requested.
New Web Project - creates pre-compiled pages into one or more assemblies (entire site even), and deployed on server.
What is .NET framework?
A technology introduced in 2002 which includes the ability to create executables, web applications, and services using C# (pronounced see-sharp), Visual Basic, and F#
What is Common Language Runtime?
Common Language Runtime (CLR) is the core runtime engine in the Microsoft .NET Framework for executing applications.
CLR is a nothing but the runtime environment. It provides a common runtime environment for different languages like VC++, C#, VB.NET, J# and JavaScript. The code written in these languages is compiled with their respective language compilers to give a common intermediate language called MSIL (Microsoft Intermediate Language) and Metadata.
The main function of CLR is to convert the Managed Code into native code and then execute the program. It acts as a layer between Operating Systems and the applications written in .Net languages.
What is CLS (Common Language Specification) ?
These are set of base rules which any language willing to run on .Net framework or CLI should support in order to interoperate with other CLS complaint languages.
What is CTS (Common Type System) ?
As we know .Net framework supports 30+ languages along with C# so CTS defines what minimum data types should your language should support to be able to work on .Net framework.
What is the .NET framework class library?
Class library is a collection that contains classes. It can be open-source, meaning that you can use, view and edit the code or precompiled which you can only link to your existing project and use it.
A non executable project that i built and have acess to some of its use full function to the user and added in a project as a refrence library having a .dll extension . mostly built by programmer so that they can easily use that at many places where they feel complexity they are used in excutable project that have interface or UI. actually it also a collection of classes and added to any existing or ongoing project
If you Still have some Confusion with our Post
So Please Leave a Comment below.We Reply you as Soon as Possible