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 |
What is different about switch statements in c#?
Difference between Value type & reference types ? and give the example in .Net?
What is difference between for and foreach in c#?
What is the data encapsulation?
What is the difference between dynamic and var in c#?
What does the keyword “virtual†declare for a method or property?
Why is it called c sharp?
What is asynchronous one-way calls?
Tell me the difference between value passing and address passing?
What are the basics of c#?
What is datetime parse in c#?
What are properties in C#?