Csharp/C#教程:C#将数字转换成字节数组的方法分享

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

下面的代码用到了MemoryStream和BinaryWriter

//Createabytearrayfromadecimal publicstaticbyte[]DecimalToByteArray(decimalsrc){ //CreateaMemoryStreamasabuffertoholdthebinarydata using(MemoryStreamstream=newMemoryStream()){ //CreateaBinaryWritertowritebinarydatatothestream using(BinaryWriterwriter=newBinaryWriter(stream)){ //WritethedecimaltotheBinaryWriter/MemoryStream writer.Write(src); //Returnthebyterepresentationofthedecimal returnstream.ToArray(); } } }

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

上述就是C#学习教程:C#将数字转换成字节数组的方法分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)! 您可能感兴趣的文章:

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/cdevelopment/906177.html

(0)
上一篇 2021年10月23日
下一篇 2021年10月23日

精彩推荐