Hi all,
Can any one tell me what is the difference between the explicit and implicit calling of a method?
Like when we put cursor and press ?Alt+Shift+F10 on the Interface we will be able to see the two options.See this example
class TestInterface : IFirst, ISecond { static void Main(string[] args) { } }W
Loading

VulpesPosted Sep 27, 2011, 9:12 AM
In contrast an implicit interface implementation is accessed in the normal way (either through a class or interface reference), should not be qualified by the interface name and must always be declared to be public.