What is a lambda expression in c#?

Answers were Sorted based on User's Feedback



What is a lambda expression in c#?..

Answer / nashiinformaticssolutions

• An anonymous function introduced in C++11, defined as:
• [capture_list](parameters) -> return_type { body }

Is This Answer Correct ?    0 Yes 0 No

What is a lambda expression in c#?..

Answer / glibwaresoftsolutions

• An anonymous function introduced in C++11, defined as:
• [capture_list](parameters) -> return_type { body }

Is This Answer Correct ?    0 Yes 0 No

What is a lambda expression in c#?..

Answer / hr@tgksolutions.com

• An anonymous function introduced in C++11, defined as:
• [capture_list](parameters) -> return_type { body }

Is This Answer Correct ?    0 Yes 0 No

What is a lambda expression in c#?..

Answer / Rajan Prasad

A lambda expression is an anonymous function that can be used to pass code as an argument or return code as a value. Lambda expressions are syntactically represented by a set of parameters enclosed within parentheses, followed by the '=>' token (read as goes to) and the body of the lambda expression.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is polymorphism and its types in c#?

1 Answers  


Explain the types of errors in c#?

1 Answers  


Explain metadata in c#.

1 Answers  


How can you achieve run time polymorphism in C#?

1 Answers   Hexaware,


What is the difference between ienumerable and icollection?

1 Answers  


Write one code example for compile time binding and one for run time binding? What is early/late binding?

1 Answers  


What are custom exceptions?

1 Answers  


What is xml serializer?

1 Answers  


Enlist some of the properties of a thread class?

1 Answers  


how to convert String array to StringBuilder array or vice versa?

3 Answers   Wipro,


What is default value of decimal c#?

1 Answers  


State two different types of access modifiers.

1 Answers  


Categories