I have an arrayList with below data in C#.net so I want to check uniqueness for only 3 items in the stings in arraylist items .uniqueness over ID,date,name "ID;date time;name;code" ofcourse I want only date section of datetime to be unique not both date and time section
"1;06/07/2017 11:17:16;out;0"
"1;06/07/2017 11:27:16;out;2"
"1;06/07/2017 11:28:16;out;0"
"1;06/07/2017 11:20:16;out;3"
so I want to distinct this arraylist because of duplicate date and ID and out please help me to solve this.