转换 IEnumerable到 IEnumerable失败
为什么会
List<long> numbers = Enumerable.Range(1, 9999).Cast<long>().ToList();
因 InvalidCastException 而失败?
Possible Duplicate:
Puzzling Enumerable.Cast InvalidCastException
Why does
List<long> numbers = Enumerable.Range(1, 9999).Cast<long>().ToList();
fail with an InvalidCastException?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此答案: 令人困惑的 Enumerable.Cast InvalidCastException
总之,Cast() 适用于非generic IEnumerable,它将每个 int 包装为一个对象。因此,当调用 Cast 时,它只能将元素视为 Object 类型,而不能将其转换为 long。
解决方案是使用 Select 对每个强类型元素执行显式转换:
See this answer: Puzzling Enumerable.Cast InvalidCastException
In summary, Cast() works on the non-generic IEnumerable, which boxes each int as an Object. So, when the Cast is called it can only treat the elements as being of type Object, which cannot be cast to long.
The solution is to use Select to perform an explicit cast of each strongly-typed element: