当前位置:  开发笔记 > 编程语言 > 正文

使用C#获取Int/short /字节结构字节表示

如何解决《使用C#获取Int/short/字节结构字节表示》经验,为你挑选了1个好方法。

给定一个FieldInfo对象和一个对象,我需要得到该字段的实际字节表示.我知道这个领域要么是int,Int32,uint,short等等.

如何获得实际的字节表示?BinaryFormatter.Serialize无济于事,因为它会给我提供比我需要的更多信息(它还记录类型名称等).该Marshal级似乎不具备设施使用的字节数组(但也许我失去了一些东西).

谢谢



1> James Curran..:

使用BitConverter.GetBytes()

您首先必须将值转换为它的本机类型,而不是使用BitConverter来获取字节:

byte[] Bytes;

if (valType == typeof(int))
{
    int intVal = (int) GetFieldValue(....);
    Bytes = BitConverter.GetBytes(intVval);
} 
else if (valType == typeof(long))
{
    int lngVal = (long) GetFieldValue(....);
    Bytes = BitConverter.GetBytes(lngVal);
} else ....

推荐阅读
殉情放开那只小兔子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有