0

次の形式の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

            }
        }

しかし、私はどのように比較するのか分かりませんか?ありがとう

4

2 に答える 2