首页上一页 1 下一页尾页 1 条记录 1/1页
interface Information
{
string Code { get; set; }
string Name { get; set; }
void ShowInfo();
}
interface Information2
{
string Code { get; set; }
string Name { get; set; }
void ShowInfo();
}
public class Jhinfo : Information, Information2
{
string Information.Code { get; set; }
string Information2.Code { get; set; }
string Information.Name { get; set; }
string Information2.Name { get; set; }
void Information.ShowInfo()
{
Information i = new Jhinfo();
Console.WriteLine(i.Code+i.Name);
}
void Information2.ShowInfo()
{
}
}