gpt4 book ai didi

c# - 如何在 Collection 上使用 ToList

转载 作者:行者123 更新时间:2023-12-04 22:35:41 25 4
gpt4 key购买 nike

MSDN documentation 表示类 Collection<T> 在 Extension 部分有一个方法 ToList()

我如何使用这种方法?

最佳答案

这个文档有点误导。 Collection<T> 类型没有直接使用这个方法。相反,它被定义为 System.Linq.Enumerable 的扩展方法。为 using 添加 System.Linq 指令应该可以解决问题

using System.Linq; 

...

Collection<T> col = ...;
List<T> list = col.ToList();

关于c# - 如何在 Collection<T> 上使用 ToList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7236174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com