I've got this code
How could I display what unique[i] is in a messagebox or something? ThanksCode:for (int i = 0; i < unique.Count; i++)
if (!updated.Contains(unique[i]))
updated.Add(unique[i]);
Printable View
I've got this code
How could I display what unique[i] is in a messagebox or something? ThanksCode:for (int i = 0; i < unique.Count; i++)
if (!updated.Contains(unique[i]))
updated.Add(unique[i]);
unique[i].ToString();