VB NET
- This is a preview of the essay.
To view the full text you must login!
Unified Class Libraries
To access the platform features and services, the Base Class Library of the .NET
Framework can be used.
Common Language Runtime (CLR)
A runtime is an environment in which programs are executed. Thus, CLR is the
environment in which .NET applications are run that have been compiled to a common
language, called as MicroSoft Intermediate Language (MSIL). This is also referred as
Intermediate Language (IL).
The runtime loads and runs the code written in any programming language that is aware
of the Common Language Runtime. It enables deep multi-language integration. Code written in one language can now inherit implementation from classes written in another
language.
Self-describing components are now possible on ...