Thursday, March 15, 2018

Implementing Multiple Interfaces With The Same Method Signature In C#

An interface in C# is a type which only defines a group of related functionalities and leaves the implementation of the functionalities to any class or struct which implements the interface. It helps a lot in implementing the SOLID principles and makes the application more decoupled.

source https://www.c-sharpcorner.com/article/implementing-multiple-interfaces-with-the-same-method-signature-in-c-sharp/

No comments:

Post a Comment