c# – Dictionary.Keys.List()[i]是否对应于Dictionary.Values.ToList()[i]?

前端之家收集整理的这篇文章主要介绍了c# – Dictionary.Keys.List()[i]是否对应于Dictionary.Values.ToList()[i]?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个字典数据类型.我的问题是,Dictionary.Keys.ToList()[i]总是对应于Dictionary.Values.ToList()[i]?也就是说,以下测试总是会通过
public void DictionaryTest(int i,Dictionary<U,T> dict)
{
  var key = dict.Keys.ToList()[i];
  Assert.AreEqual(dict[key],dict.Values.ToList()[i]); 
}

解决方法

检查 Dictionary.Keys Property的MSDN条目:

The order of the keys in the Dictionary.KeyCollection is unspecified,but it is the same order as the associated values in the Dictionary.ValueCollection returned by the Values property.

原文链接:https://www.f2er.com/csharp/100715.html

猜你在找的C#相关文章