Click here to hide categories Click here to show left categories
User: Home welcome : Guest Log In / Register here
public interface I1
{
void Test();
}
public interface I2
public class MyClass : I1, I2
void I1.Test()
int sum = 10 + 20;
void I2.Test()
int sum = 100 + 200;