Standard interface implementation vs Explicit interface implementation
In this post, I’ll show the differences between standard interface implementation and explicit interface implementation. Let’s say we have a IShape interface with one method called Print() as followed Standard implementation Let’s say we have a class called Triangle which implements the IShape interface. In the standard implementation, the class would look like this. When … [Read more…]