class Test {
public Test(string name, string age) {
}
}
interface ITest
????????
class Example: ITest {
public Example(/* ... */) {
}
}
那么我应该在我的界面中使用什么来在我的示例中使用与测试中相同的参数?
我想做的事:
我有 3 个课程
a
:b
和c
。我希望我
c
的继承自a
和b
。
但是 C# 不允许你这样做......所以我想使用一个接口。
编辑 我的课程是:
- 学生(姓名、年龄、学业)
- 教师(姓名、年龄、班级)
- 在职学生/教师(姓名、年龄、学习/课程、付款)
所以我想在我的工作班中使用其他班级的方法。