What's the difference between HandleRef and GCHandle?
http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.handleref.aspx
http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.gchandle.aspx
Thanks
|
What's the difference between HandleRef and GCHandle? http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.handleref.aspx http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.gchandle.aspx Thanks | ||||
|
feedback
|
|
The point of both these structures is to prevent the garbage collector from releasing a resource and invalidating the handle before the P/Invoke call has finished. The documentation you linked indicates that these are special types recognized by the interop marshaller. What I gather from the documentation is that The Whereas the It is not necessary to use either. One can simply call And even that is probably not necessary. I've been writing P/Invoke code for years, and I've found that when it's correctly written, there's no need for either of these structures. If a class object gets garbage collected while the API call is in the middle of executing, then that's a bug in your application. I actually want to be notified of the failure via an exception, not hide it. | ||||
|
feedback
|
|
One difference is given in the link you mentioned:
| |||||||
feedback
|