时间:2019-03-17 标签:c#BindingList问题
我有如下所示的接口定义。
public interface IProvider
{
}
public interface IProviderList : BindingList<IProvider>
{
}
不确定为什么会出现编译错误
输入“BindingList<...>”接口列表中不是接口
有什么想法吗?
I have interface defs like below.
public interface IProvider
{
}
public interface IProviderList : BindingList<IProvider>
{
}
Not sure whygetting compilation error
Type 'BindingList<...>' in interface list is not an interface
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BindingList
不是一个接口,而是一个类。IBindingList
是一个接口。也许您打算使用 IBindingList?BindingList<T>
is not an interface, it's a class.IBindingList
is an interface. Perhaps you meant to useIBindingList
?BindingList
是一个类。接口(您的
IProviderList
)不能从类继承。BindingList<T>
is a class.An interface (your
IProviderList
) can not inherit from a class.