码迷,mamicode.com
首页 > 编程语言 > 详细

C#--整型与字节数组byte[]之间的转换

时间:2018-05-17 20:43:51      阅读:461      评论:0      收藏:0      [点我收藏+]

标签:http   字节   html   todo   c#   ntb   .com   tco   article   

转:https://www.cnblogs.com/dayang12525/p/6393941.html

 
using System;

int  i = 123;
byte [] intBuff = BitConverter.GetBytes(i);     // 将 int 转换成字节数组
lob.Write(intBuff, 0, 4);
i = BitConverter.ToInt32(intBuff, 0);           // 从字节数组转换成 int

double x = 123.456;
byte [] doubleBuff = BitConverter.GetBytes(x);  // 将 double 转换成字节数组
lob.Write(doubleBuff, 0, 8);
x = BitConverter.ToDouble(doubleBuff, 0);       // 从字节数组转换成 double

C#--整型与字节数组byte[]之间的转换

标签:http   字节   html   todo   c#   ntb   .com   tco   article   

原文地址:https://www.cnblogs.com/judes/p/9052867.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!