2
votes
votes
2 answers
List with KeyValuePair and duplicate keys?
Hi all, if I create a list like the one as below: [code] List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>(); [/code] Can the same key have multiple values? as in to say, can ...
