11
Answers

remove duplicate string

i  have  one list 
 
List<Report> lstEmail = new List<Report>(); 
 
foreach (var item in lstEmail)
{
string[] strEmailIDs = item.EmailID.Split(','); 
 
but i want to remove duplicate values from these string  
Answers (11)