C#将数字转换成字节数组的方法

Pythia ·
更新时间:2024-09-20
· 629 次阅读

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

下面的代码用到了MemoryStream 和 BinaryWriter

// Create a byte array from a decimal public static byte[] DecimalToByteArray (decimal src) { // Create a MemoryStream as a buffer to hold the binary data using (MemoryStream stream = new MemoryStream()) { // Create a BinaryWriter to write binary data to the stream using (BinaryWriter writer = new BinaryWriter(stream)) { // Write the decimal to the BinaryWriter/MemoryStream writer.Write(src); // Return the byte representation of the decimal return stream.ToArray(); } } }

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

您可能感兴趣的文章:总结C#删除字符串数组中空字符串的几种方法C# 字符串string和内存流MemoryStream及比特数组byte[]之间相互转换C#字符串数组转换为整形数组的方法C#实现字符串转换成字节数组的简单实现方法asp.net(c#) 使用Rex正则来生成字符串数组的代码C# 16进制与字符串、字节数组之间的转换C# 中将数值型数据转换为字节数组的方法C#将hashtable值转换到数组中的方法C#将字节数组转换成数字的方法C#实现char字符数组与字符串相互转换的方法



方法 C# 字节数组 数字转换 数组

需要 登录 后方可回复, 如果你还没有账号请 注册新账号