C # filter duplicate data and use generic

Source: Internet
Author: User
# Region list <t> filter duplicate data
Public Delegate bool extends scomparer <t> (t x, t y );
/// <Summary>
/// Filter duplicate data
/// </Summary>
Public class comparint <t>: iequalitycomparer <t>
{
Private ipvscomparer <t> EC;
Public comparint (){}
Public comparint (ipvscomparer <t> E)
{
This. EC = E;
}
# Region iequalitycomparer <t> Member

Public bool equals (t x, t y)
{
If (null! = This. EC)
Return this. EC (x, y );
Else
Return false;
}

Public int gethashcode (t obj)
{
Return obj. tostring (). gethashcode ();
}

# Endregion
}
# Endregion

Example

String [] strlist = oldmaillist. Split (',');
String strnewmaillist = "";

List <string> emaillist = new list <string> ();
Try
{
Emaillist. addrange (strlist); // Add to list
List <string> emaillist2 = emaillist. Distinct (New comparint <string> (
Delegate (string X, string y)
{
If (null! = X & null! = Y)
Return X. gethashcode () = Y. gethashcode ();
Return false;
}
). Tolist ();
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.