我定了如下接口:public interface IEntity<EntityType>其中的一个实体:public class AboutUs : IEntity<AboutUs>直接调用:AboutUs aboutUs = new AboutUs();如果我要去态创建生成IEntity接口应该如何处理。谢谢。
2 回答
ITMISS
TA贡献1871条经验 获得超8个赞
public interface IEntity<T> where T: EntityType
-------------------------------------------------------
public class AboutUs : EntityType
IEntity<AboutUs> aboutus = .....
-------------------------------------------------------
是这个意思???????????????????????????????
- 2 回答
- 0 关注
- 536 浏览
添加回答
举报
0/150
提交
取消