what is a callback function?
Answers were Sorted based on User's Feedback
Answer / www.lutix.com
A function that is passed (by reference) to another
function. The other function calls the callback function
under defined conditions
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / 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 |
Answer / geetha
hi Amit,
Thank you for giving Definition. Can you give some example?.
Thanks,
Geetha
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amit bhardwaj
one object to send message to other object is called
callback and the Methos use to call back message are known
as callback method.
| Is This Answer Correct ? | 3 Yes | 2 No |
Explain how can I get around scope problems in a try/catch?
What is the difference between dynamic and var in c#?
what are nullable types in c#
In a stored procedure 4 select stmts there.If error comes in one select stmt will remaining normally executes?
What is difference between C# and VB.NET?
Explain the Usage of web.config
What is piller of OOPS in C#.
Are constructors inherited c#?
What is boxing and unboxing in c#?
What is difference between string and string builder?
Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide virtual SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }
Does c# do array bounds checking?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)