How do I read a raw byte array from any file, and write that byte array back into a new file?
|
|
|
|
|
(edit: note that the question changed; it didn't mention Well,
|
|||
|
|
|
|
Do you know about TextReader and TextWriter, and their descendents StreamReader and StreamWriter? I think these will solve your problem because they handle encodings, BinaryReader does not know about encodings or even text, it is only concerned with bytes. |
||||||
|
|
|
|
||||
|

*like this*- i.e. like this. – Marc Gravell♦ Sep 20 at 8:01byte[]is not necessarily a good idea; this could be very expensive for large files. – Marc Gravell♦ Sep 20 at 8:23