Hi, i had write the following code but it seems like gt exception, can help me check got what problem?
Dictionary<string, double> sortList4 = new Dictionary<string, double>();
List<double> list = ISUPP.Items.OfType<double>().ToList();
double[] value1=list.ToArray();
int c = 0;
foreach (string gk in Comset2.Items)
{
sortList4.Add(gk, value1[0]);
c++;
}