我有一些以下格式的xml:
<select>
<option value="2" ID="451">Some other text</option>
<option value="5" ID="005">Some other text</option>
<option value="6" ID="454">Some other text</option>
<option value="15" ID="015">Some other text</option>
<option value="17" ID="47">Some other text</option>
</select>
我还有一个字典,它有一个键值,我想与上面 xml 中相关选项的 ID 匹配并返回字典值。我不知道如何完成这个。
我正在考虑像这样循环字典:
foreach (KeyValuePair<string, string> dictionaryEntry in dictionary)
{
if (dictionaryEntry.Key == "AttributeValue")
{
//do stuff here
}
}
但我不确定如何比较?谢谢