我有以下代码来实现两个具有相同名称和签名的接口。
interface L1 {
void printresult();
}
interface L2 {
void printresult();
}
public class test : L1, L2
{
void L1.printresult()
{
Console.WriteLine("print the result");
}
void L2.printresult()
{
Console.WriteLine("print the result");
}
}
我如何从程序中访问L2.printresult()
?
我尝试了test t1=new test();
但它不起作用。
如何访问测试方法以及为什么不能以上述方式访问它?