Небезопасный и безопасный способ сделать это:
static UInt16[] MarshalUInt16(Object obj)
{
int len = Marshal.SizeOf(obj);
IntPtr ptr = Marshal.AllocHGlobal(len);
Marshal.StructureToPtr(obj, ptr, true);
UInt16[] arr = new UInt16[len / 2];
unsafe
{
UInt16* csharpPtr = (UInt16*)ptr;
for (Int32 i = 0; i < arr.Length; i++)
{
arr[i] = csharpPtr[i];
}
}
Marshal.FreeHGlobal(ptr);
return arr;
}
static UInt16[] SafeMarshalUInt16(Object obj)
{
int len = Marshal.SizeOf(obj);
byte[] buf = new byte[len];
IntPtr ptr = Marshal.AllocHGlobal(len);
Marshal.StructureToPtr(obj, ptr, true);
Marshal.Copy(ptr, buf, 0, len);
Marshal.FreeHGlobal(ptr);
UInt16[] arr = new UInt16[len / 2];
//for (Int32 i = 0; i < arr.Length; i++)
//{
// arr[i] = BitConverter.ToUInt16(buf, i * 2);
//}
Buffer.BlockCopy(buf, 0, arr, 0, len);
return arr;
}
Обновлено, чтобы отражать мудрость других.