I want to pass a byte[] to a method takes a IntPtr Parameter in c#, is that possible and how.
|
feedback
|
|
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 | |||||
feedback
|
|
another way:
| |||||||
feedback
|
|
This should work but must be used within an unsafe context:
beware, you have to use the pointer in the fixed block! The gc can move the object once you are not anymore in the fixed block. | ||||
feedback
|
|
You could use Cheers, -Sakthi | ||||
feedback
|
|
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. | |||
|
feedback
|
|
Marshal.Copy works but is rather slow. Faster is to copy the bytes in a for loop. Even faster is to cast the byte array to a ulong array, copy as much ulong as fits in the byte array, then copy the possible remaining 7 bytes (the trail that is not 8 bytes aligned). Fastest is to pin the byte array in a fixed statement as proposed above in Tyalis' answer. | |||
|
feedback
|
GCHandlemethod works like a charm... also thefixedmethod. :P :)) – Cipi Mar 11 '11 at 9:45