M
mp
according to the help
(http://msdn.microsoft.com/en-us/library/f7fta44c.aspx)
Sorteddictionary has a property Item by which you can retrieve the value for
that key
"Gets or sets the value associated with the specified key."
however when it try it in code, no Item property exists
seems like i should be able to do this:
SortedDictionary<string, string> test = new SortedDictionary<string,
string>();
test.Add("a","B");
debug.print (test.Item("a"));
but i can't
what am i missing?
(http://msdn.microsoft.com/en-us/library/f7fta44c.aspx)
Sorteddictionary has a property Item by which you can retrieve the value for
that key
"Gets or sets the value associated with the specified key."
however when it try it in code, no Item property exists
seems like i should be able to do this:
SortedDictionary<string, string> test = new SortedDictionary<string,
string>();
test.Add("a","B");
debug.print (test.Item("a"));
but i can't
what am i missing?