What is Lambda Expression?



What is Lambda Expression?..

Answer / sameer

A lambda expression is an anonymous function that can
contain expressions and statements
Syntax: delegate int del(int i);
del myDelegate = x => x * x;
int j = myDelegate(5); //j = 25

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More C Sharp Interview Questions

If the original method is not static you can declare an override method to be static or not?

0 Answers   Siebel,


What are the two kinds of properties?

10 Answers   Wipro,


what is be the overhead, if i use binary transmission. and will it be sent using xml text or how ?

0 Answers  


What is the difference between finalize() and dispose()?

0 Answers  


Why objects are stored in heap in c#?

0 Answers  


How is a strongly-named assembly different from one that isn’t strongly-named?

0 Answers  


What is the difference between private and protected in c#?

0 Answers  


Why do I get an error (cs1006) when trying to declare a method without specifying a return type?

0 Answers  


What are the basics of c#?

0 Answers  


what is IDisposal interface,IComparable,IEquatable,IFormatable

0 Answers   Wipro,


What is an abstract class c#?

0 Answers  


What is an int c#?

0 Answers  


Categories