up vote 19 down vote favorite
7
share [g+] share [fb]

I want to pass a byte[] to a method takes a IntPtr Parameter in c#, is that possible and how.

link|improve this question

74% accept rate
Could you provide more details? Why would you want to do it? – Grzenio Feb 11 '09 at 16:32
You need this if you use DirectShow API for example... to get data from VideoRenderer, you have to use this... and GCHandle method works like a charm... also the fixed method. :P :)) – Cipi Mar 11 '11 at 9:45
feedback

6 Answers

up vote 12 down vote accepted

Not sure about getting an IntPtr to an array, but you can copy the data for use with unmanaged code by using Mashal.Copy:

IntPtr unmanagedPointer = Marshal.AllocHGlobal(bytes.Length);
Marshal.Copy(bytes, 0, unmanagedPointer, bytes.Length);
// Call unmanaged code
Marshal.FreeHGlobal(unmanagedPointer);

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

link|improve this answer
Just to clarify, Marshal.Copy with that overload needs a start index. The call should be Marshal.Copy(bytes, 0, unmanagedPointer, bytes.Length); – mkenyon May 20 '10 at 16:26
@Aeolien - Well caught! – Richard Szalay May 20 '10 at 19:16
feedback

another way:

GCHandle pinnedArray = GCHandle.Alloc(byteArray, GCHandleType.Pinned);
IntPtr pointer = pinnedArray.AddrOfPinnedObject();
//do your stuff
pinnedArray.Free();
link|improve this answer
This solution works very well. Thanks a lot! – Dimitri C. Aug 20 '09 at 7:31
1  
Works!!! Thanx! :D Why isn't this the accepted answer??? – Cipi Mar 11 '11 at 9:41
feedback

This should work but must be used within an unsafe context:

byte[] buffer = new byte[255];
fixed (byte* p = buffer)
{
    IntPtr ptr = (IntPtr)p;
    // do you stuff here
}

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.

link|improve this answer
I like this answer because it doesn't involve allocating extra memory just to access the data – Xcalibur Apr 7 '11 at 4:02
feedback

You could use Marshal.UnsafeAddrOfPinnedArrayElement(array, 0) to get a memory pointer to the array.

Cheers, -Sakthi

link|improve this answer
This is - I think - the only way to get an IntPtr for an array element which is not the 0th (without using unsafe code). – Guido Domenici Jul 11 '11 at 15:54
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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.