.Net - Describe the .NET base class library. - June 03,
2009 at 11:00 AM by Shuchi Gauri
Describe the .NET base class library.
.NET’s Base class library exists in order to encapsulate huge number of common
functions and makes them easily accessible to the developer. .NET base class
library provides the functionality like ADO.NET, XML, Threading, IO, Security,
Diagnostics, Resources, Globalization, collections etc. It serves as the main
point of interaction between developer and runtime.
Also read
The .NET Framework class library is a library of classes, interfaces, and value
types................
An Abstract class is only used for inheritance. This means it acts as a base
class for its derived classes. One cannot use it to create
objects..................
ResourceManager class: It provides convenient access to resources that are
culture-correct. The access is provided at run time...........
When there is a need to keep the business logic separate from the User Interface
or when there is some class which is big enough to have multiple number of
developers implement the methods in it............
The Protected Internal access modifier can be accessed by: Members of the
Assembly, The inheriting class, The class itself...............
The read only can be modified by the class it is contained in................
|