Answer Posted / m.shanmuga sundaram
Definition:
***********
Functions that are triggered when an associated event
happens.
example
*******
a) In C language function pointer is used as a callback
functions.
b) In C++ virtual function are used as a callback function.
c) In c# delegate keyword is used to create a call back
function.
example in c#
*************
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 ? | 11 Yes | 1 No |
Post New Answer View All Answers
How do I download a program to my desktop?
What is iqueryable?
What is a race condition?
What is the difference between static and constant variables?
What is difference between for and foreach loop in c#?
What is overloading with example?
What is difference between property and variable in c#?
What are delegates in C#?
What are c# types?
How to use exception handling in stored procedure?
Why singleton is sealed?
What are circular references?
What is object pool in .net?
What is window application in c#?
Which debugging tools you can use in the .NET ssSDK?