111,092
社区成员




public interface IDoSomething
{
void Test();
}
public interface IOther
{
string Test();
}
/// <summary>
///Class1 的摘要说明
/// </summary>
public class Class1 : IDoSomething, IOther
{
public Class1()
{
//
//TODO: 在此处添加构造函数逻辑
//
}
public void Test()
{
throw new NotImplementedException("IDoSomething");
}
string IOther.Test()
{
return "IOther";
}
}