What are anonymous methods ? why these methods are used and in what condition these methods are useful ?
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 |
What is asynccallback c#?
What is the correct way of declaring an xml namespace?
What is mvc in c#?
What is a delegate? Explain.
What is the difference between private and protected in c#?
What are the benefits of using windows services:
Why abstraction is used in c#?
What is difference between event and delegate in c#?
Can you declare a class or a struct as constant?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?
What are methods in C#?
Is c# an open source language?