I need to pass an IntPtr to IStream.Read, and the IntPtr should point to a ulong variable. How do I get this IntPtr that points to my ulong variable?
feedback
|
|
The best way is to change the IStream definition:
Then you can write
| ||||
feedback
|
|
I believe you have to use the GCHandle method if you want to avoid unsafe code. I am not sure on how this works with boxed value types.
| |||
feedback
|
|
If you cannot use unsafe code try the following.
At some point later on, you will need to call Marshal.FreeHGlobal on the "ptr" value. | |||
|
feedback
|
| |||
feedback
|