gpt4 book ai didi

c# - 使用 for 循环遍历字典

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

我通常使用 foreach 循环遍历 Dictionary。

Dictionary<string, string> dictSummary = new Dictionary<string, string>();

在这种情况下,我想修剪空白条目,但是 foreach 循环不允许这样做。

foreach (var kvp in dictSummary)
{
kvp.Value = kvp.Value.Trim();
}

如何使用 for 循环执行此操作?

for (int i = dictSummary.Count - 1; i >= 0; i--)
{
}

最佳答案

这个呢?

for (int i = dictSummary.Count - 1; i >= 0; i--) {
var item = dictSummary.ElementAt(i);
var itemKey = item.Key;
var itemValue = item.Value;
}

关于c# - 使用 for 循环遍历字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15241257/

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