Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字节数组,我正在尝试将其写入 csv 文件。类似这样的东西
string second=image.ToString(); string csv = string.Format("{0},{1}\n", first,second); File.AppendAllText(filePath, csv);
其中图像是字节数组。当我尝试写入文件时,它显示 system.byte[] 而不是字节数组。如何写入实际数据。
试试下面的代码
File.AppendAllText(filePath, BitConverter.ToString(image));
希望这是你所期待的。