时间:2019-03-17 标签:c#BindingList问题

发布于 2024-10-10 23:43:58 字数 230 浏览 4 评论 0原文

我有如下所示的接口定义。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

就此别过 2024-10-17 23:43:58

BindingList 不是一个接口,而是一个类。 IBindingList 是一个接口。也许您打算使用 IBindingList?

BindingList<T> is not an interface, it's a class. IBindingList is an interface. Perhaps you meant to use IBindingList?

与之呼应 2024-10-17 23:43:58

BindingList 是一个类。
接口(您的IProviderList)不能从类继承。

BindingList<T> is a class.
An interface (your IProviderList) can not inherit from a class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文