[C#]结构体和字节数组的相互转化

本文介绍了一种不依赖外部文件实现结构体与字节数组互相转换的方法,包括将结构体转换为字节数组及从字节数组还原结构体的过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
public static class StructCopyer
   {
       //        相当于序列化与反序列化,但是不用借助外部文件
       //1、struct转换为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);
           }
 
       }
 
       //2、Byte[]转换为struct
       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);
           }
       }
 
   }
本文转自静默虚空博客园博客,原文链接:http://www.cnblogs.com/jingmoxukong/articles/2118105.html,如需转载请自行联系原作者

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值