I use interfaces for decoupling my code. I am curious, is the usage of explicit interface implementation meant for hiding functionality?
Example:
public class MyClass : IInterface
{
void IInterface.NoneWillCall(int ragh) { }
}
What is the benefit and specific use case of making this available only explicitly via the interface?
IHourCalculatorandIMinuteCalculatorboth have aGetTime()method? Makes it nice to be able to((IHourCalculator)foo).GetTime()could be called directly. ;-) – Brad Christie May 25 '11 at 19:39