VB.NET - Concepts of keyword Must Inherit - April 29, 2009
at 18:00 PM by Amit Satpute
Explain the concepts of keyword Must Inherit in VB.NET.
Class methods and properties must be stated as Overridable to allow inheritance.
Also if a class has to inherit from a base class, it must state the methods that
are overridden with the Overrides keyword.
If a class cannot be inherited from, this must be indicated with the
NotInheritable keyword.
VB.NET - Concepts of keyword Must Inherit - June 07, 2009
at 10:00 AM by Shuchi Gauri
Explain the concepts of keyword Must Inherit in VB.NET.
It’s a class modifier which means that its objects cannot be instantiated.
Rather this class must be inherited only to be used. It is used for inheritance
in vb.net
Also read
What is non_deterministic
finalization?
NET
Common Language Runtime
NET
Configuring and optimizing
NET
Configuring setup project
NET
Constants, Enum, Arrays, collection
|