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));
これがあなたが期待しているものであることを願っています。