if we will do the Explicit implementation of Interface than we found those function only when there we create the object from that interface if we create the object from class than we didn't get those function.only this is the case in which you can hide interface function partially otherwise there is no way to hide members on an interface.
public class UrClass : ICollection {void ICollection.Clear() { ... } }