手机
当前位置:查字典教程网 >编程开发 >C#教程 >C#将字节数组转换成数字的方法
C#将字节数组转换成数字的方法
摘要:本文实例讲述了C#将字节数组转换成数字的方法。分享给大家供大家参考。具体实现方法如下://Createadecimalfromabytear...

本文实例讲述了C#将字节数组转换成数字的方法。分享给大家供大家参考。具体实现方法如下:

// Create a decimal from a byte array public static decimal ByteArrayToDecimal (byte[] src) { // Create a MemoryStream containing the byte array using (MemoryStream stream = new MemoryStream(src)) { // Create a BinaryReader to read the decimal from the stream using (BinaryReader reader = new BinaryReader(stream)) { // Read and return the decimal from the // BinaryReader/MemoryStream return reader.ReadDecimal(); } } }

希望本文所述对大家的C#程序设计有所帮助。

【C#将字节数组转换成数字的方法】相关文章:

C# 中将数值型数据转换为字节数组的方法

C# byte数组与Image相互转换的方法

C# 获取属性名的方法

用C#对ADO.NET数据库完成简单操作的方法

C#保存图片到数据库并读取显示图片的方法

用C#编写获取远程IP,MAC的方法

C#日期转换函数分享

C#数值转换-隐式数值转换表参考

c#中判断字符串是不是数字或字母的方法

C#生成sitemap站点地图的方法

精品推荐
分类导航