可能重复:
c#多重继承
我只是使用 Asp.net 创建一个简单的应用程序,这里我有 3 个类User, Staff, Student
。在User
类中,我有类似UserName, Password, Email and Mobile
和 在Staff and Student
类中的属性General details like FirstName, MiddleName, LastName as well as Email, Mobile
。
每当我添加新的员工或学生时,我都必须为他们创建一个用户帐户。
所以在 User 类中,我尝试继承 Staff 类,这样我就可以从 Staff 访问 User 类中的属性。
成功添加员工数据后,我需要Add
在用户类中调用(我已经有这个)方法,该方法将为员工创建一个包含他的数据的用户帐户。
还有一件事,我知道C#不支持多重继承,这里我需要继承Staff和Student类。我怎样才能做到这一点。
有人能帮我一下吗。