vote up 0 vote down star

If I have an unmanaged pointer and I want to transfer a specified number of bytes from that location to a Byte array, what is the best way to do this?

i.e. what is the equivalent of Marshal.PtrToString* methods but where the destination is a Byte()

Thanks

flag

2 Answers

vote up 1 vote down check

Marshal.Copy has overloads for copying byte arrays to/from a pointer.

By Byte() is this interoperation with VB6 style COM? You why want to check the underlying COM type using the OLE-COM Viewer (included in the Windows SDK tools installed with VS) to open the VB created dll to look at that its typelib says.

link|flag
Thanks that's perfect, I used the Marshal.Copy(IntPtr, Byte(), Int32, Int32) overload described here msdn.microsoft.com/en-us/library/… – Mohammed Ault Feb 25 at 12:19
vote up 0 vote down

Try the following code

public static byte[] PtrToByteArray(IntPtr ptr, int len) {
  var array = new byte[len];
  for ( int i = 0; i < len; i++ ) { 
    array[i] = (byte)Marshal.PtrToStructure(ptr, typeof(byte));
    ptr = new IntPtr(ptr.ToInt64()+IntPtr.Size);
  }
}
link|flag

Your Answer

Get an OpenID
or

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