OOP

{ 0 comments }

{ 0 comments }

Using complex types to make calling services less… complex | Encosia

Using complex types to make calling services less… complex | Encosia –

Read the full article →

When is it mandatory to declare a class as abstract?

A class must be declared abstract if it contains variant functionality. Variant functionality is functionality that is defined in a base class but implemented in a derived (or child) class. This is indicated by using the C# ‘abstract’ keyword (or in VB.NET, the ‘MustOverride’ keyword) before a method or property name. Abstract classes cannot be [...]

Read the full article →