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