SortedDictionary<K, V> in VS2005

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey there

Simple question, has the SortedDictionary<K, V> gone away now?

In the latest build of Visual Studio 2005 publically available, this class
seems to have disappeared.

Thanks in advance

Doug Holland
 
Yes, I added the using statement for the System.Collections.Generic namespace
and have referenced both mscorlib.dll and System.dll which both contain
portions of the above namespace.

- Doug
 
Doug,
Simple question, has the SortedDictionary<K, V> gone away now?

There's a SortedList<K, V> now instead, in System.dll.



Mattias
 
I noticed that class when I was looking for the SortedDictionary<K, V> but
assumed it would only take a single type parameter T as the name would
suggest a 'List' rather than a 'Dictionary'.

Guess I should have looked a little further.

Thanks

Doug
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top