C# – Interfaces

  • Post author:
  • Post category:C#
  • Post comments:1 Comment

A C# interfaces is defined as a syntactical contract that all the classes inheriting the interface should follow. The interface defines the 'what' part of the syntactical contract and the deriving classes…

Continue ReadingC# – Interfaces

C# – Polymorphism

  • Post author:
  • Post category:C#
  • Post comments:2 Comments

The word C# polymorphism means having many forms. In the object-oriented programming paradigm, polymorphism is often expressed as 'one interface, multiple functions. Polymorphism can be static or dynamic. In static polymorphism, the response…

Continue ReadingC# – Polymorphism