c#如何将字节数组转换成数字?

发布时间:2020-07-04编辑:脚本学堂
c#将字节数组转换成数字的方法,通过本例掌握下c#类型转换的技巧,有关c#编程中字节流数据的读取方法。

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();
  }
 }
}