> do i have to remove the pair and then reinsert it or can i just update
> the value of the dictionary
Just update it. A dictionary can only have one value stored per unique
key.
Eq.
amir - 16 May 2008 14:25 GMT
what do you mean just update it? how do i update a value for a certain key?
> > do i have to remove the pair and then reinsert it or can i just update
> > the value of the dictionary
[quoted text clipped - 3 lines]
>
> Eq.
Family Tree Mike - 16 May 2008 14:30 GMT
Assuming that the key is in the dictionary,
MyDictionary ["MyCertainKey"] = "Some new value...";
> what do you mean just update it? how do i update a value for a certain key?
>
[quoted text clipped - 5 lines]
> >
> > Eq.
dictionary["KeyName"] = newValue;

Signature
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
Subscribe to my blog
http://gregorybeamer.spaces.live.com/lists/feed.rss
or just read it:
http://gregorybeamer.spaces.live.com/
*************************************************
| Think outside the box!
*************************************************
> do i have to remove the pair and then reinsert it or can i just update the
> value of the dictionary