What are anonymous methods ? why these methods are used and in what condition these methods are useful ?



What are anonymous methods ? why these methods are used and in what condition these methods are usef..

Answer / 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

More C Sharp Interview Questions

What are methods in C#?

0 Answers   Winsol Solutions,


What is function c#?

0 Answers  


What is the use of New Keyword

15 Answers  


What is the meaning of console writeline in c#?

0 Answers  


What is generic delegates in c#?

0 Answers  






Can we write one page in c# and other in vb in one application ?

3 Answers   Keane India Ltd,


Is int a struct in c#?

0 Answers  


What is difference between class and interface in c#?

0 Answers  


What does async mean in c#?

0 Answers  


What framework is used for performance testing/load testing?

0 Answers   TCS,


What is c-sharp (c#)?

0 Answers  


Can a sealed class be used as a base class?

0 Answers  


Categories