|
The .NET Framework class library is a library of classes,
interfaces, and value types...............
Read
answer
-Value types are inherited from system.valuetypes
-Reference types are inherited system.object..............
Read answer
Also read
What is the relation between Classes and Objects? Explain different properties
of Object Oriented Systems. What is difference between Association, Aggregation
and Inheritance relationships? Explain the features of an abstract class in
NET. Difference between abstract classes and interfaces Similarities and
difference between Class and structure in .NET Features of Static/Shared
classes. What is Operator Overloading in .NET?.............
Explain
an object, class and Method.
An object is an entity that keeps together state and behaviors.
For instance, a car encapsulates state such as red color, 900 cc etc and
behaviors as 'Start', 'Stop' etc., so does an object...............
An Abstract class is only used for inheritance. This means it acts as a base
class for its derived classes..............
When a derived class is inherited from an Abstract class, no other class can be
extended then. Interface can be used in any scenario..............
Static classes are used when any change made to an object should not affect the
data and functions of the class..............
|