Я пытаюсь определить правильный синтаксис для отображения случайного ключа на каждой метке.
//declare random
Random rnd = new Random();
//create the sorted list and add items
SortedList<string,string> sl = new SortedList<string,string>();
sl.Add("PicknPay", "jam");
sl.Add("Spar", "bread");
sl.Add("Checkers", "rice");
sl.Add("Shoprite", "potato");
sl.Add("Cambridge", "spinash");
int Count = 0;
int nValue = rnd.Next(5);
int newindex = 0;
int seekindex;
for (seekindex = 0; seekindex > nValue; seekindex++)
{
newindex = rnd.Next(seekindex);
}
lbl1.Text = "";
foreach (var item in sl.Keys)
{
lbl1.Text += "," + Convert.ToString(item.IndexOf(item));
}
lbl1.Text = lbl1.Text.TrimStart(',');