gpt4 book ai didi

c# - 在 .NET 2.0 中将 List 转换为 List

转载 作者:IT王子 更新时间:2023-10-29 03:36:41 24 4
gpt4 key购买 nike

你能投一个List<int>吗?至 List<string>不知何故?

我知道我可以循环遍历和 .ToString() 这个东西,但是转换会很棒。

我使用的是 C# 2.0(所以没有 LINQ)。

最佳答案

.NET 2.0 有 ConvertAll 方法,您可以在其中传入转换器函数:

List<int>    l1 = new List<int>(new int[] { 1, 2, 3 } );
List<string> l2 = l1.ConvertAll<string>(delegate(int i) { return i.ToString(); });

关于c# - 在 .NET 2.0 中将 List<int> 转换为 List<string>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44942/

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