abstract class

  • Thread starter Thread starter Ufit
  • Start date Start date
U

Ufit

Can anyone give me an example of an abstract class and what
it is used for ? Is it the same thing as virtual class in VB.NET o C# ?
Thanks


Uf
 
Ufit said:
Can anyone give me an example of an abstract class and what
it is used for ? Is it the same thing as virtual class in VB.NET o C# ?


Yes, in VB.NET such a class is marked using the 'MustInherit' keyword.
Typically it is used for base classes which contain incomplete functionality
that needs to be completed in an inheriting type.
 
Back
Top