c#構造体とbyte[]間の変換
2273 ワード
///
/// byte[]
///
///
///
public static Byte[] StructToBytes(Object structure)
{
Int32 size = Marshal.SizeOf(structure);
IntPtr buffer = Marshal.AllocHGlobal(size);
try
{
Marshal.StructureToPtr(structure, buffer, false);
Byte[] bytes = new Byte[size];
Marshal.Copy(buffer, bytes, 0, size);
return bytes;
}
finally
{
Marshal.FreeHGlobal(buffer);
}
}
///
/// byte[]
///
///
///
///
public static Object BytesToStruct(Byte[] bytes, Type strcutType)
{
Int32 size = Marshal.SizeOf(strcutType);
IntPtr buffer = Marshal.AllocHGlobal(size);
try
{
Marshal.Copy(bytes, 0, buffer, size);
return Marshal.PtrToStructure(buffer, strcutType);
}
finally
{
Marshal.FreeHGlobal(buffer);
}
}
この2つの関数はbyte[]配列と構造体との間の変換を実現した.構造体は、通信時に直接送信および受信することができる.以下のように、PlatCellMsg pcm=(PlatCellMsg)BytesToStruct(buf,typeof(PlatCellMsg);byte[] s = StructToBytes(pcm ); ただし、構造体を定義するには、2つの点に注意する必要があります.