Split list and remove duplicates

Hi,

Can you try the following expression?

resultList = yourList.Select(Function(s) s.Split("\"c).First).Distinct().ToList()

Regards,