blah blah blah is here! blah blah » Close

2
votes
2 answers

List with KeyValuePair and duplicate keys?

cami
30

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 ...

Feedback