gpt4 book ai didi

c# - 创建一个包含单个字符串 N 次的 List

转载 作者:太空狗 更新时间:2023-10-29 18:04:41 28 4
gpt4 key购买 nike

有什么方法可以构建类型为 List<string> 的列表吗?其中包含一个字符串 N不使用循环的次数?类似于 String(char c, int count) 的东西而不是字符串列表。

List<string> list = new List<string>() { "str", "str", "str", ..... N times };

最佳答案

您可以使用Repeat():

List<String> l = Enumerable.Repeat<String>("foo", 100).ToList<String>();

当然它仍然会使用一个循环,但现在您不会“看到”它。

关于c# - 创建一个包含单个字符串 N 次的 List<string>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14069850/

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