0

我有如下的界面定义。

public interface IProvider  
{  

}


public interface IProviderList : BindingList<IProvider>  
{

}

不知道为什么在接口列表中出现编译错误
类型'BindingList<...>'不是接口

有任何想法吗?

4

2 回答 2

1

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

于 2011-01-10T16:53:43.293 回答
1

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

于 2011-01-10T16:53:22.033 回答