Various variants of C # delegates

Source: Internet
Author: User

public void Sort (comparison<t> Comparison)      
public delegate int comparison<t> (t x, t y);

This is the call to the List<maskdata>. Sort sorts the notation, where the definition of sort and the definition of the comparison delegate are as above
 
Lstmaskdat.sort (new comparison< Maskdata> (delegate (maskdata M1, maskdata m2) { return 1 ; })); Lstmaskdat.sort ( delegate (Maskdata M1, Maskdata m2) { return 1 ; }); Lstmaskdat.sort ((m1, M2) => { return 1 ; });

The most important thing to understand is that a delegate is a function pointer and a function should be assigned to it. This function can be a function name, or a temporary definition of an anonymous function, as above.

Various variants of C # delegates

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.