How can i implement a method from a class that is extended to an Interface?
I have this Interface:
public Interface myInterface
{
public static int myMethod();
}
And this class:
public class MyClass : myInterface
{
// And I want here to implement the method form myInterface and i don't know how
}