Remove duplicate values

Posted by Pankaj on Stack Overflow See other posts from Stack Overflow or by Pankaj
Published on 2010-04-30T09:49:14Z Indexed on 2010/04/30 9:57 UTC
Read the original article Hit count: 232

Filed under:

Hello All

I have a class ClientState

Class ClientState
{
Public int ID{get;set;}
public string State{get;set;}
}

List<ClientState> listClientState which contain all states of USA, Now may problem is listClientState contain some objects which have duplicates states. How can i filter listClientState to remove duplicate record

© Stack Overflow or respective owner

Related posts about c#