c# list with only unique values code example
Example: c# list with only unique items
If your requirements are to have no duplicates, you should be using a HashSet.
HashSet.Add will return false when the item already exists (if that even matters to you).