C# invoke chained delegate methods asynchronously
Suppose I have a delegate which refers to bar number of methods. When I
invoke the delegate either like this someDelegate(someParameter); or like
this someDelegate.Invoke(someParameter);, methods that this delegate
refers to are actually invoked synchronously, one after another, right? Is
there a way to make this calls Asynchronous ?
No comments:
Post a Comment