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 |
If the original method is not static you can declare an override method to be static or not?
What are the two kinds of properties?
what is be the overhead, if i use binary transmission. and will it be sent using xml text or how ?
What is the difference between finalize() and dispose()?
Why objects are stored in heap in c#?
How is a strongly-named assembly different from one that isn’t strongly-named?
What is the difference between private and protected in c#?
Why do I get an error (cs1006) when trying to declare a method without specifying a return type?
What are the basics of c#?
what is IDisposal interface,IComparable,IEquatable,IFormatable
What is an abstract class c#?
What is an int c#?