更新:2007 年 11 月
此示例演示如何使用
返回类型 | 方法 |
---|---|
bool | |
char | |
double | |
short | |
int | |
long | |
float | |
ushort | |
uint | |
ulong |
示例
此示例实例化字节数组,并在计算机结构为 little-endian 的情况下反转数组(即首先存储最低有效字节),然后调用
说明: |
---|
输出可能会根据计算机结构的 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); // Output: int: 25 |
在此示例中,调用
说明: |
---|
输出可能会根据计算机结构的 endian 设置而不同。 |
C# | 复制代码 |
---|---|
byte[] bytes = BitConverter.GetBytes(201805978); Console.WriteLine("byte array: " + BitConverter.ToString(bytes)); // Output: byte array: 9A-50-07-0C |