C #4.0 new feature learning (4)-anonymous method and Lambda expression

Source: Internet
Author: User

C # anonymous methods and lambda expressions are supported from 3.0.

1. Anonymous Method

Adddelegate del = delegate (int I, Int J)
{
Return I + J;
};
Console. writeline (DEL (5, 6 ));

Pay attention to the syntax features of the anonymous method.

2 lambda expressions

You can use lambda expressions to further simplify the above Code:
Adddelegate d = (I, j) => {return I + J ;};
Console. writeline (D (5, 6 ));
Among them, the Type I and J can be omitted, and the compiler will automatically infer.

Lambda expressions can be used in combination with generic delegation, for example:

Func <int, Int, int> func = (I, j) => {return I + J ;};
Console. writeline (func (5, 6 ));

If no parameter is input, you can directly write (), for example:
Action action = () => {console. writeline ("Hello, world! ");};
Action ();

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.