gpt4 book ai didi

c# - 如何在 C# 中使用 “for” 循环创建动态递增变量

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

如何在 C# 中使用“for”循环创建动态递增变量?像这样:track_1、track_2、track_3、track_4。等等。

最佳答案

您不能创建动态命名的变量。您所能做的就是创建一些集合或数组,并对其进行操作。我认为最适合你的类(class)是通用类 List<> :

List<String> listWithDynamic = new List<String>();
for (int i = 1; i < limit; i +=1)
{
listWithDynamic.Add(string.Format("track_{0}", i));
...
}

关于c# - 如何在 C# 中使用 “for” 循环创建动态递增变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7386698/

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