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

link|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
feedback

2 Answers

Yes, why not?

sortedDictionary[key] = newValue;
link|improve this answer
feedback

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();
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown