[IronPython] Dict methods

JoeSox joesox at gmail.com
Fri Apr 7 00:38:34 CEST 2006


Is there any easy method to use to add a value to an
IronPython.Runtime.Dict as seen in the Python code below?

fw_edges[arg1_uid].append(fw_edge)


where IronPython code I am using:
Dict fw_edges = new Dict();   //eg.= {20: [22], 12: [14], 5: [7], 29: [31]}
int arg1_uid;
int fw_edge;

I may be over looking something but I couldn't find a Dict method that
could do the .append to the values already established.
Thanks
--
Joseph



More information about the Ironpython-users mailing list