强制转换 BindList到 BindingList<接口>

发布于 2024-11-04 19:32:40 字数 237 浏览 3 评论 0原文

我有一个实现接口 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 技术交流群。

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

发布评论

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

评论(1

旧时浪漫 2024-11-11 19:32:40

这是协方差 问题。它已在 .NET 4.0 中得到解决,但并非针对所有可枚举类型,而且我认为 BindingList也没有解决该问题。

我认为您唯一的选择是创建 BindingList 的新实例,如下所示:

BindingList<I> funcName(){
   ...
   return new BindingList<I>(C.listA);
}

或者,您可以将 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:

BindingList<I> funcName(){
   ...
   return new BindingList<I>(C.listA);
}

Alternately, you could declare your C.listA field as a BindingList<I> and just add instances of your class to it.

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