gpt4 book ai didi

c# - 从数组填充列表

转载 作者:可可西里 更新时间:2023-11-01 03:05:06 27 4
gpt4 key购买 nike

如果我有一个数组。我可以从该数组填充通用列表吗:

Foo[] fooList . . . (assume populated array)

// This doesn't seem to work
List<Foo> newList = new List<Foo>(fooList);

最佳答案

您可以将数组转换为列表:

string[] strings = { "hello", "world" };
IList<string> stringList = strings.ToList();

关于c# - 从数组填充列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/703762/

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