|
You can either use fields or property procedure to add properties. It is
convenient to use fields when the values associated with the properties are
less in number. eg: boolean which can have only two values associated with
it..................
You can either use fields or property procedure to add properties.To create a
property that can only be read and not altered, you need to decalre it as
ReadOnly. After doing this, if you try to assign value to the property, an
error will occur...............
Also read
Manifest in .NET helps to understand the relation between the elements of the
assemblies...........
When an application is shared amongst several other applications, the complete
machine code is present the Global assembly cache............
Boxing permits any value type to be implicitly converted to type object or to
any interface type Implemented by value type.............
AJAX is employed to improve the user’s experience. A request is made for the
initial page rendering. After that, asynchronous requests to the server are
made. An asynchronous request is a background request to send or receive data
in an entirely nonvisual manner.............
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..............
|