如何:将字节数组转换为 基本类型(C# 编程指南)

此示例演示如何使用 BitConverter 类将字节数组转换为 int 并返回字节数组。例如,在从网络读取字节之后,可能需要将字节转换为内置数据类型。除了示例中的 ToInt32(array<Byte>[]()[], Int32) 方法之外,下表列出了 BitConverter 类中将字节(来自字节数组)转换为其他内置类型的方法。

返回类型

方法

bool

ToBoolean(array<Byte>[]()[], Int32)

char

ToChar(array<Byte>[]()[], Int32)

double

ToDouble(array<Byte>[]()[], Int32)

short

ToInt16(array<Byte>[]()[], Int32)

int

ToInt32(array<Byte>[]()[], Int32)

long

ToInt64(array<Byte>[]()[], Int32)

float

ToSingle(array<Byte>[]()[], Int32)

ushort

ToUInt16(array<Byte>[]()[], Int32)

uint

ToUInt32(array<Byte>[]()[], Int32)

ulong

ToUInt64(array<Byte>[]()[], Int32)

示例

此示例实例化字节数组,并在计算机结构为 little-endian 的情况下反转数组(即首先存储最低有效字节),然后调用 ToInt32(array<Byte>[]()[], Int32) 方法以将数组中的四个字节转换为 int。ToInt32(array<Byte>[]()[], Int32) 的第二个参数指定字节数组的起始索引。

注意:

输出可能会根据计算机结构的 endian 设置而不同。

C# “复制”图像复制代码
byte[] bytes = { 0, 0, 0, 25 };

// If the system architecture is little-endian (that is, little end first),
// reverse the byte array.
if (BitConverter.IsLittleEndian)
    Array.Reverse(bytes);

int i = BitConverter.ToInt32(bytes, 0);
Console.WriteLine("int: {0}", i);

 “复制”图像复制代码
int: 25

在此示例中,调用 BitConverter 类的 GetBytes(Int32) 方法以将 int 转换为字节数组。

注意:

输出可能会根据计算机结构的 endian 设置而不同。

C# “复制”图像复制代码
byte[] bytes = BitConverter.GetBytes(201805978);
Console.WriteLine("byte array: " + BitConverter.ToString(bytes));

 “复制”图像复制代码
byte array: 9A-50-07-0C
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值