Interview Question
Qus: What is Anonymous Functions?
A function without any name. An anonymous function is an "inline" statement or expression that can be used wherever a delegate type is expected. You can use it to initialize a named delegate or pass it instead of a named delegate type as a method parameter.
Answers (2)
• Lambda Expressions
• Anonymous Methods