[Solved] C# parameters in interface [closed]
[ad_1] Interfaces are used as a contract for classes that inherit it. This means any public methods/properties you want the interface to expose, must also be exposed in the inherited class. In the case above, you don’t have any public methods/properties exposed in the interface. Let me show you an example. Interface ITest { void … Read more