Answer: The Asynchronous calls wait for a method before the program flow is resumed to complete its task. In an asynchronous call, the program flow continues while the method is executes.
//create an object for a function
Function Fun = new Function();
//create delegate
Delegate Del = new Delegate(Fun.Function);
//invoke the method asynchronously
IAsyncResult call = Delegate.Invoke();
Asked In: Many Interviews |
Alert Moderator