What is a lambda expression in c#?
Answers were Sorted based on User's Feedback
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 |
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 |
• 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 icomparer in c#?
How to make sure custom class supports deterministic finalization?
Can we inherit static class in c#?
How is a loop recorder monitored?
What is Dispose method in .NET?
Can we inherit sealed class in c#?
What is private protected in c#?
Explain the use of Mutex in C#?
0 Answers Sans Pareil IT Services,
Define xslt.
can it possible to acees the virthual method using the override method object? plz give me the example
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;
Explain the difference between “constant” and “read-only” variables used in c#?