1

Possible Duplicate:
Duplicate keys in .NET dictionaries?

I want to use a kind of dictionary which can support duplicated keys. Is there any builtin support in .Net framework?

Community
  • 1
  • 1
user496949
  • 83,087
  • 147
  • 309
  • 426

2 Answers2

2

Yes, using the Lookup class.

Abe Miessler
  • 82,532
  • 99
  • 305
  • 486
0

No but you can use List it doesnt have key values instead of you can store like List.add( key,value)

Abe Miessler
  • 82,532
  • 99
  • 305
  • 486
Sree
  • 584
  • 6
  • 20