我的应用程序中有以下代码。
public class GeneralInfo
{
private string _id;
private string _name;
public string id
{
set
{
_id = value;
}
get
{
return _id;
}
}
public string name
{
set
{
_name = value;
}
get
{
return _name;
}
}
}
public class SecureInfo
{
private string _password;
public string password
{
set
{
_password = value;
}
get
{
return _password;
}
}
}
public class User
{
}
我需要在上面的代码中应用多重继承,即。类 GeneralInfo、SecureInfo 属性应该可以在用户类中访问。
我知道使用接口可以实现多重继承。但是我需要在接口中限制的基类中定义属性。
我怎样才能做到这一点?