Hi,i am doing window form using VB C#.
My problem as below:
Dictionary<string, double> sortList1 = new Dictionary<string, double>();//contain key and //values
Dictionary<string, double> sortList2 = new Dictionary<string, double>();//empty
// do events
int j = 0;
foreach (double doub5 in sortList1.Values)
{
holder = (doub5 * 100 / richTextBox2.Lines.Length) * bt;
j++;
}
i wants to store the keys of sortList1 and the new values (holder) into sortList2. How to do? Thanks you.