0
How to Convert files to binary ?in c# windows form
Huffman coding and encoding
3 Respostas
0
Well i know how to convert a file to a byte array:
StreamReader s = new StreamReader("Path");
Byte[] msg = Encoding.ASCII.GetBytes(S.ReadAllLines());
0
s.ReadAllLines()*
0
Dont forget to be:
using System.IO