Class-27-FEB-2015 VS - Dot Net Environment: CTS (COMMON TYPE (Datatype) SYSTEM)

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Class-27-FEB-2015

VS.Dot Net Environment


It having three category of program
1). Console Application
2). Windows App
3). Web App (Runs On Web Browser)

IDE: - Integrated Development Environment (It is The Platform for DotNet)


[Bcz VS is a specific Soft where we can create a differ. Kind of app runs]

CLR: - Common Language Runtime


[It provides the environment in which all kind of DOTNET app run]

COMPILATION & EXECUTION PROCESS IN .NET


[Compilation is a Two Step Process in Any DOT NET Apps:
Program Compile (IL-Intermediate Language)
At the time of execution
IL (JIT: Just In Time compiler) Machine Level and executes it
Class c1 m1, m2, m3, m4 IL
Mainm1, m2

CTS [COMMON TYPE (datatype) SYSTEM]


It ensures that whatever language we are using in the DOTNET environment
the size of the variable of same data type is same in all the languages.

CLS (COMMON LANGUAGE SPECIFICATION)


It ensures that way or the structure of writing the program is same across all
the DOTNET supporting languages.

GARBAGE COLLECTION
It is process in which the CLR frees the memory of the objects which
completes its execution.

You might also like