无法将 System.Object[] 转换为 System.Collections.Generic.List

发布于 2024-10-19 20:05:40 字数 523 浏览 1 评论 0原文

我有一个带有对象参数的方法。

public bool ContainsValue(object value)

我发现将对象转换为 IList 是有效的。

IList<object> list = (IList<object>)value;

但是,将其转换为 List 却不会。

List<object> Ilist = (List<object>)value;

我查看了 IListList 的定义,它们似乎都实现了 EnumeratorCollection接口。我想知道为什么 List 不起作用,但 IList 却起作用。它在框架的哪个位置崩溃了,为什么?

I have a method with an object parameter.

public bool ContainsValue(object value)

I found that converting the object to an IList works.

IList<object> list = (IList<object>)value;

However, converting it to a List does not.

List<object> Ilist = (List<object>)value;

I looked at the definition of both the IList and the List and they both seem to implement the Enumerator and Collection interfaces. I am wondering why List doesn't work but IList does. Where in the framework does it crash and why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

孤单情人 2024-10-26 20:05:40

不是 C# 专家,但可能 IList 是一个接口,而 List 是一个实现?它可能是 IList 的另一个实现...

Not a C# expert, but might it be that IList is an interface while List is an implementation? It might be another implementation of IList ...

心凉怎暖 2024-10-26 20:05:40

如果一个对象实现了IList接口,并不意味着它实际上是List类型。它可以是实现 IList 接口的任何其他类型。

If an object implements the IList interface, it doesn't mean that it is actually of the type List. It can be any other type implementing the IList interface.

小瓶盖 2024-10-26 20:05:40

正如其他人所说,您有两个问题:

  1. IList 不一定是 List
  2. ContainsValue 的参数可能应该比 object 更具体。

但是,如果由于某种原因参数必须保留为对象,并且您需要一个List,而不是IList >,你可以这样做:

using System.Linq;

...

List<object> list = ((IList<object>)value).ToList();

As others have said, you have two problems:

  1. An IList is not necessarily a List.
  2. The parameter for ContainsValue should probably be something more specific than object.

However, if for some reason the parameter must remain and object, and you require a List, rather than an IList, you can do this:

using System.Linq;

...

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