Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a SortedDictionary is it possible to change the value of an item ?

share|improve this question
Yes, but does that mess up the sort? – JB King May 6 '09 at 20:48
Nope. It's sorted by keys, not values. – Mehrdad Afshari May 6 '09 at 20:49
@hrs, do you perhaps mean: change the Key? – Henk Holterman May 6 '09 at 21:16

2 Answers

Yes, why not?

sortedDictionary[key] = newValue;
share|improve this answer

Yes, just use the indexer like this (in C#):

using System;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        SortedDictionary<int, string> map = 
            new SortedDictionary<int, string>();
        map[1] = "Kevin Hazzard";
        Console.WriteLine( map[1] );
        map[1] = "W. Kevin Hazzard";
        Console.WriteLine( map[1] );
        Console.ReadLine();
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.