Hello,
I'm trying to display the content of a byte array in a text file.
This is my code:
var writer = new System.IO.StreamWriter(Application.StartupPath + @"\B323.txt");
writer.Write(data.ToString());
writer.Close();
writer.Dispose();
data is a byte[] array.
The output is "System.Byte[]",why?
I'm trying to display the content of this array,where is the problem?