Lambda and javalambda expressions

Source: Internet
Author: User

Lambda and javalambda expressions

Since C #3.0, you can use a new syntax to delegate the implementation code to Lambda expressions. Lambda expressions can be used whenever there is a delegate parameter type.

Lambda expressions have simpler syntax than anonymous expressions. If the called method has parameters and no parameters are required, the syntax of the anonymous method is relatively simple, because the parameter is not required.

Class Program {static void Main (string [] args) {string mid = ", middle part,"; Func <string, string> lambda = param => {param + = mid; param + = "and this was added to the string"; return param ;}; Console. writeLine (lambda ("Start of string"); Console. readKey ();}}

The required parameters are listed on the left of the Lambda operator "=>. The right side of the Lambda operator defines the implementation code of the method that grants Lambda variables.

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.