C#将数字转换成字节数组的方法
程序员文章站
2023-11-24 19:14:52
本文实例讲述了c#将数字转换成字节数组的方法。分享给大家供大家参考。具体实现方法如下:
下面的代码用到了memorystream 和 binarywriter...
本文实例讲述了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#程序设计有所帮助。
上一篇: Android 给控件添加边框阴影效果
下一篇: C#手工双缓冲技术用法实例分析