强制转换 BindList到 BindingList<接口>接口>
我有一个实现接口 I 的对象(类 A)。
我的对象 C 有一个 BindingList listA
在某一时刻我需要执行以下转换:
BindingList<I> funcName(){
...
return (BindingList<I>) C.listA;
}
但这由于转换错误而无法编译。
我该怎么做呢?
I have an object (class A) that implements an interface I.
My object C has a BindingList listA
At one point I need to perform the following cast:
BindingList<I> funcName(){
...
return (BindingList<I>) C.listA;
}
But this does not compile because of a cast error.
How should I go and do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是协方差 问题。它已在 .NET 4.0 中得到解决,但并非针对所有可枚举类型,而且我认为 BindingList也没有解决该问题。
我认为您唯一的选择是创建 BindingList 的新实例,如下所示:
或者,您可以将 C.listA 字段声明为 BindingList 。并将您的类的实例添加到其中。
This is a covariance issue. It's been addressed in .NET 4.0 but not for all enumerable types, and I don't think it's been addressed for BindingList<T>.
I think your only option is to create a new instance of BindingList as follows:
Alternately, you could declare your C.listA field as a BindingList<I> and just add instances of your class to it.