gpt4 book ai didi

c# - 在 List/IEnumerable 中重复数字

转载 作者:太空宇宙 更新时间:2023-11-03 17:24:46 25 4
gpt4 key购买 nike

我有一个列表,例如

List<int> List1 = new List<int>{1, 5, 8, 3, 9};

有什么简单的方法可以重复列表中的元素得到{1, 1, 5, 5, 8, 8, 3, 3, 9, 9}?

我需要这个的原因是我正在绘制列表中的元素并且需要制作一个“步骤图”。

最佳答案

var list2 = List1.SelectMany(x => new []{x, x}).ToList();

关于c# - 在 List/IEnumerable 中重复数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21402744/

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