vote up 0 vote down star

When I implement a chaining such as in:

ToUpper().ToString(). ....

Would that chaining also be considered as a callback ?

flag

4 Answers

vote up 4 vote down check

Usually a callback is in the form of delegate that is passed as an argument to another object or method call. It allows a lower-level object to call a method defined in a higher level object.

public void Caller()
{
    // We can use an anonymous method for our call back...
    this.PerformAction(() => Console.WriteLine("Callback invoked"));
}

public void PerformAction(Action callback)
{
    // perform a task and invoke the call back
    callback.Invoke();
}
link|flag
vote up 5 vote down

No, it would not be.

link|flag
vote up 1 vote down

This is a very quick overview of what a call back is and what you use it for.

link|flag
vote up 1 vote down

No it wouldn't, to use a simple example.

This:

string foo = bar.ToString().ToUpper();

Is equivalent to this:

string foo = bar.ToString();
foo = foo.ToUpper();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.