【发布时间】:2014-09-13 11:41:17
【问题描述】:
我目前有一个抽象类,例如
abstract class Users
{
private List<string> SelectedUsers;
public Users(List<string> SelectedUsers)
{
this.SelectedUsers = SelectedUsers;
}
}
和一个子类
class UsersTypeOne : Users
{
//What do I put here in order to call the constructor in the abstract class
}
【问题讨论】:
-
谢谢,终于找到了
标签: c# abstract-class instantiation