invoke - p/invoke

2019-08-09 17:10发布

what is the difference between BeginInvoke/EndInvoke and P/invoke?

2条回答
狗以群分
2楼-- · 2019-08-09 17:30

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.

查看更多
三岁会撩人
3楼-- · 2019-08-09 17:49

BeginInvoke/EndInvoke are used in asynchronous programming to invoke a delegate on another thread. P/invoke is used to call unmanaged code.

查看更多
登录 后发表回答