Reputation: 6239
what is the difference between BeginInvoke/EndInvoke and P/invoke?
Upvotes: 1
Views: 410
Reputation: 941317
They only have the verb "invoke" in common. Generically, invoke == call. The p in pinvoke means "platform", the pinvoke marshaller is a chunk of code inside the CLR that knows how to properly call native (platform specific) code.
BeginInvoke is a heavily overloaded method name that starts an asynchronous method call. The compiler automatically generates one for every delegate type. Along with Invoke and EndInvoke. They are auto-generated so their arguments match the delegate declaration. A BeginInvoke method is also used by Winforms and WPF, respectively the Control and Dispatcher classes. Quite a different animal from a delegate's BeginInvoke() method, although it does start something asynchronously.
Upvotes: 5
Reputation: 1038720
BeginInvoke/EndInvoke
are used in asynchronous programming to invoke a delegate on another thread. P/invoke
is used to call unmanaged code.
Upvotes: 3