作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
下面的代码遍历一个列表并获取值,但是我如何编写一个类似的语句来获取键和值
foreach (string value in list.Values)
{
Console.WriteLine(value);
}
例如像这样的东西
foreach (string value in list.Values)
{
Console.WriteLine(value);
Console.WriteLine(list.key);
}
列表的代码是:
SortedList<string, string> list = new SortedList<string, string>();
最佳答案
foreach (KeyValuePair<string, string> kvp in list)
{
Console.WriteLine(kvp.Value);
Console.WriteLine(kvp.Key);
}
来自 msdn :
GetEnumerator 返回类型为 KeyValuePair<TKey, TValue>
的枚举器遍历 SortedList<TKey, TValue>
.
正如乔恩所说,您可以使用 var
关键字而不是写迭代变量的类型名称(类型将从用法中推断出来):
foreach (var kvp in list)
{
Console.WriteLine(kvp.Value);
Console.WriteLine(kvp.Key);
}
关于c# - 如何遍历 SortedList,获取键和值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14013261/
我是一名优秀的程序员,十分优秀!