如何把csharp里面的class/struct转换成byte array

<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
使用下面的这个类,可以很方便的把类/结构转换成byte array. 在进行socke编程的时候很有用。
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;

  5. class CommonConvertion
  6. {
  7. public static byte[] StructureToByteArray(object obj)
  8. {
  9. int Length = Marshal.SizeOf(obj);
  10. byte[] bytearray = new byte[Length];
  11. IntPtr ptr = Marshal.AllocHGlobal(Length);
  12. Marshal.StructureToPtr(obj, ptr, false);
  13. Marshal.Copy(ptr, bytearray, 0, Length);
  14. Marshal.FreeHGlobal(ptr);
  15. return bytearray;
  16. }

  17. public static void ByteArrayToStructure(byte[] bytearray, ref object obj)
  18. {
  19. int Length = Marshal.SizeOf(obj);
  20. IntPtr ptr = Marshal.AllocHGlobal(Length);
  21. Marshal.Copy(bytearray, 0, ptr, Length);
  22. obj = Marshal.PtrToStructure(ptr, obj.GetType());
  23. Marshal.FreeHGlobal(ptr);
  24. }
  25. }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值