I want to make a method that takes any file and reads it as an array of 0s and 1s, i.e. its binary code. I want to save that binary code as a text file. Can you help me? Tha
Use simple FileStream.Read then print it with Convert.ToString(b, 2)
FileStream.Read
Convert.ToString(b, 2)