C # LAMBDA

Source: Internet
Author: User

A Lambda expression is an anonymous function that you can use to create a delegate or an expression tree type. by using a lambda expression, you can write a local function that can be passed as a parameter or returned as a function call value. To create a lambda expression, you specify an input parameter, if any, on the left side of the lambda operator, and then enter the expression or statement block on the other side. For example, the lambda expression x = = x * x refers to the parameter named x and returns the square value of x .
delegate int del (int i); static void Main (string[] args) {    del mydelegate = x = x * x;    Int J = MyDelegate (5); j = 25}
expression Lambda: the lambda expression on the right side of the + = operator is called expression Lambda. Statement Lambda : A statement lambda is similar to an expression lambda expression except that the statement is enclosed in curly braces:

C # LAMBDA

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.