Showing posts with the label Dot NetShow all

JIT compiler, code manager

JIT Compiler & Code Manager Just-in-time compiler [JIT] is a part of common language run-time [CRL]. JIT compiler converts the MSIL or CIL code into native / machine code. The JIT compiler is required to speed up the code execution and provide support for… Read more

CLS, CTS, MSIL

COMMON TYPE SYSTEM  [CTS] The Common type system (CTS) standardizes the data types of all programming language under .Net framework.  OR The CTS is a standard for defining and using data types in the .Net framework. CTS define a collection of data types which ar… Read more

Common language runtime (CLR)

Common language runtime  (CLR) CLR is also referred to as a " Managed environment ". The main components of CLR are:- Common type system. Common language specification. Garbage collector. JIT [Just-in-time] compiler. The CLR's JIT compiler c… Read more

Architecture of .net framework

Architecture of .Net Framework Common Language Runtime [CLR] CLR is a runtime engine which provides necessary tools while executing .Net program. It manages the execution of programs. CLR provides core services such as code compilation , memory allocatio… Read more

Features of .net framework

Features of . Net Interoperability  Portability  Security  CLR Engine OOPs Support Multi-language Support Automatic Memory Management Base Class Library Strong XML Support  Interoperability  It provides a lot of backward support. An application… Read more

Introduction to .net framework

Introduction to .Net Framework Dot  Net The .Net framework is a software development platform which is designed and developed by Microsoft. The first version of .Net framework was released in the year 2002 and called .Net framework 1.0. .Net framework is … Read more