> I am trying to convert a Dictionary into an array so that I can compare
> values and compare keys individually.
>
> I am looking for a solution like array[array] i.e array of array.
- convert dic.Keys to int[]
- convert dic.Values to double[]
- store both arrays in object[]
I doubt that it is a good idea to convert to that format.
Arne
amir - 01 Mar 2008 04:22 GMT
I did that already but thought, may be there is a smarter way than that so
that I can compare values easily in the int[]
> > I am trying to convert a Dictionary into an array so that I can compare
> > values and compare keys individually.
[quoted text clipped - 8 lines]
>
> Arne