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

Post New Answer

More C Sharp Interview Questions

What is icomparer in c#?

0 Answers  


How to make sure custom class supports deterministic finalization?

1 Answers   IBM,


Can we inherit static class in c#?

0 Answers  


How is a loop recorder monitored?

0 Answers  


What is Dispose method in .NET?

3 Answers  


Can we inherit sealed class in c#?

0 Answers  


What is private protected in c#?

0 Answers  


Explain the use of Mutex in C#?

0 Answers   Sans Pareil IT Services,


Define xslt.

0 Answers  


can it possible to acees the virthual method using the override method object? plz give me the example

2 Answers  


how to return morethan one value using out parameter in c#.net ; For Example : public int show(out int []a) { int []a={1,2,3,4,5}; return a[]; } we have to print all the values without using the Console.WriteLine statement;

1 Answers   Verizon,


Explain the difference between “constant” and “read-only” variables used in c#?

0 Answers  


Categories