What are anonymous methods ? why these methods are used and in what condition these methods are useful ?
Answer Posted / sudhir sheoran
Anonymous methods are used for making delegates
use simple. In this in spite of declaring a separate
method and then assigning a delegate to it we can
directly write inline code during the declaration
of delegate. E.g;
class Program
{
public delegate bool CalculatorDelegate(int number);
static void Main(string[] args)
{
CalculatorDelegate calDel = numberGreaterThanFive;
bool value = calDel.Invoke(4);
}
public static bool numberGreaterThanFive(int number)
{
if (number > 5)
{
return true
}
return false;
}
}
Now using Anonymous method and delegate :
class Program
{
public delegate bool CalculatorDelegate(int number);
static void Main(string[] args
{
CalculatorDelegate caldel =
new CalculatorDelegate(x => x > 5);
bool value = caldel.Invoke(3);
}
}
So code reduced to much extent. No need to define separate functions
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Where are value types stored in c#?
What is field in c#?
What is the difference between finalize() and dispose()?
Explain the difference between “system.array.clone()” and “system.array.copyto()” in c#?
What is arraylist class in c#?
When do we generally use destructors to release resources?
In .NET which is the smallest unit of execution?
Can we have static indexer in c#?
Can enum be null c#?
What is delegate in c#?
What is activator c#?
What is the difference between string and string in c#?
How does dictionary work in c#?
Why should you override the tostring() method?
What are the classes contained in a single .NET DLL ?