3
Reply

How to hide some members of an interface?

Ananth G

Ananth G

Dec 04, 2016
745
0

    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.

    Sandy
    November 01, 2017
    0

    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.

    Sandy
    November 01, 2017
    0

    public class UrClass : ICollection {void ICollection.Clear() { ... } }

    Ananth G
    December 04, 2016
    0