C # Delegates, anonymous methods, and lambda expressions

Source: Internet
Author: User

Work often use lambda expression, simple and easy to use code clear, although used to get started, but forget the college classroom when the teacher said it with the delegation and the relationship between the anonymous method, today smoked a simple understanding of the time, here to do a summary.

1 What is a delegate

Public delegate string DelegateTest (string a);
public static string Geta (String a)
{
return A;
}
static void Main (string[] args)
{
DelegateTest d = new DelegateTest (Geta);
var result = d ("AAAAA");
Console.Write (result);
Console.read ();
}

2 Anonymous Methods

Give an example of an anonymous class to find similarity

var student = new {Id = 1, name = "Zhang San"};//There is a method body without a name

3 lambda expression

DelegateTest dd = Delegate (string a) {return A;};//delegate and anonymous function implementation
DelegateTest ddd = ((string a) = = {return A;}); /delegate + anonymous function =lambda
DelegateTest dddd = (A = = {return A;}); /More Simplified

C # Delegates, anonymous methods, and lambda expressions

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.