問題があります... containsvalue の条件が true の場合、文字列辞書キー値のリストに入れようとしています:
しかし、これは正しくありません:(
ここにコードがあります:
Private listID As New List(Of String) ' declaration of list
Private dictionaryID As New Dictionary(Of String, Integer) ' declaration of dictionary
'put a keys and values to dictionary
dictionaryID.Add("first", 1)
dictionaryID.Add("second", 2)
dictionaryID.Add("first1", 1)
If dictionaryID.ContainsValue(1) Then ' if value of dictinary is 1
Dim pair As KeyValuePair(Of String, Integer)
listID.Clear()
For Each pair In dictionaryID
listID.Add(pair.Key)
Next
End If
そして今、リストには 2 つの要素が必要です... -> "first" と "first1"
手伝って頂けますか?どうもありがとうございました!