Hi All,
I want to pass a byte[] to a method takes a IntPtr Parameter in c#, is that possible and how.
Thanks All
|
1
|
|||
|
|
|
Not sure about getting an IntPtr to an array, but you can copy the data for use with unmanaged code by using Mashal.Copy:
Alternatively you could declare a struct with one property and then use Marshal.PtrToStructure, but that would still require allocating unmanaged memory. Edit: Also, as Tyalis pointed out, you can also use fixed if unsafe code is an option for you |
|||
|
|
|
|
another way:
|
||
|
|
|
This should work but must be used within an unsafe context:
|
||
|
|
|
|
In some cases you can use an Int32 type (or Int64) in case of the IntPtr. If you can, another useful class is BitConverter. For what you want you could use BitConverter.ToInt32 for example. |
||
|
|