.Net is a technology from the Microsoft Corporation for developing applications for Desktop, web and mobile. All future technologies of Microsoft will depend on .Net.

.NET is a general-purpose software development platform, similar to Java.

.Net Technology includes the following features:

Multiple Language Support

.NET supports around 44 languages like C# (Standard ECMA-334 C#), VB.NET, Visual J# (J Sharp), C++/CLI (Standard ECMA-372 C++/CLI) and so on.

Tools used to develop .NET applications

Microsoft Visual Studio.Net IDE and the .Net Framework

The .NET Framework SDK must be installed in your machine in order to develop any .NET application as well as in the client machine to run the .NET application.

Components Within .Net Framework

CLR (Common Language Runtime): It the runtime engine for any .NET applications.

The following are the functions of the CLR:

Framework Class Library ( FCL )

It contains many classes, interfaces, structures and enumerated types within it, that are arranged in hierarchical manner under various namespaces.

A namespace is logical container of classes and other namespaces.

"System" is the root namespace. (It is included in all types of application development.)

The FCL is common for all .NET languages, in other words no separate set of libraries for separate languages.

CLS (Common Language Specification)

It is an agreement among language designers and class library designers to use a common set of basic language features that all languages need to follow.

CTS (Common Type System)

It is a data type system that is used in all .NET languages.

The following are some data types in the CTS:

Compilation and Execution Procedure of a .Net Application

As shown in the diagram, source code can be in any .NET language, such as C# or VB.Net.

If C# then the file name extension is .cs if VB then it is .vb.

As per language selection in coding, the language compiler of that language will be used.

In other words for C# it is Csc.exe , for Vb.NET it is Vbc.exe.

compilation