coding for delegates?

Answers were Sorted based on User's Feedback



coding for delegates?..

Answer / m.shanmuga sundaram

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
public delegate int execute(int a, int
b); //declare a delegate method

static void Main(string[] args)
{
Program p = new Program();

execute ex = new execute(p.add);
Console.WriteLine(ex(2,3)); //add method is
executed

ex = new execute(p.subtract);
Console.WriteLine(ex(2, 3)); //subtract method
is executed
}

public int add(int a, int b)
{
return (a + b);
}

public int subtract(int a, int b)
{
return (a - b);
}
}
}

Is This Answer Correct ?    3 Yes 0 No

coding for delegates?..

Answer / dotnet user

using System;
// Declare delegate -- defines required signature:
delegate void SampleDelegate(string message);

class MainClass
{
// Regular method that matches signature:
static void SampleDelegateMethod(string message)
{
Console.WriteLine(message);
}

static void Main()
{
// Instantiate delegate with named method:
SampleDelegate d1 = SampleDelegateMethod;
// Instantiate delegate with anonymous method:
SampleDelegate d2 = delegate(string message)
{
Console.WriteLine(message);
};

// Invoke delegate d1:
d1("Hello");
// Invoke delegate d2:
d2(" World");
}
}

Is This Answer Correct ?    2 Yes 1 No

coding for delegates?..

Answer / navin c. pandit

Here is the code how to add a delegate:-

Button_Id.OnClick += new EventHandler(function_name());

where function_name() is the name of the method that you
want to call.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Difference between direct type casting and using "as" keyword?

1 Answers   TCS,


how to cleanup object that does not support dispose method? How to implement dispose for such scenarios?

2 Answers   ITC Infotech,


Write one code example for compile time binding and one for run time binding? What is early/late binding?

0 Answers  


Is java better than c sharp?

0 Answers  


What is the difference between ref & out parameters in c#?

0 Answers  






Why do we need constructor?

0 Answers  


Is null empty or whitespace c#?

0 Answers  


Can we change static value in c#?

0 Answers  


What is interface inheritance?

0 Answers  


What is iqueryable in c#?

0 Answers  


How do I create a dbml file?

0 Answers  


Explain the difference between a struct and a class?

0 Answers  


Categories