0

I can see BeginInvoke and EndInvoke methods are available for any delegate. But I don't see them defined anywhere in "Delegate" and "MulticastDelegate" classes. Where are they present?

  • 1
    Possible duplicate of [https://stackoverflow.com/q/14961450/4430204](https://stackoverflow.com/q/14961450/4430204) – taquion Apr 21 '18 at 14:52
  • Possible duplicate of [Where are CLR-defined methods like \[delegate\].BeginInvoke documented?](https://stackoverflow.com/questions/14961450/where-are-clr-defined-methods-like-delegate-begininvoke-documented) – TnTinMn Apr 21 '18 at 15:16

1 Answers1

0

From MSDN:

The common language runtime provides each delegate type with BeginInvoke and EndInvoke methods, to enable asynchronous invocation of the delegate. For more information about these methods, see Calling Synchronous Methods Asynchronously.

CodingYoshi
  • 25,467
  • 4
  • 62
  • 64