5
votes
Simplest, efficient ways to read binary and ascii files to string or similar in various languages.
c#:
1:
string s = System.IO.File.ReadAllText(fileName);
2:
System.IO.File.WriteAllText(fileName, s);
3:
byte[] data = System.IO.File.ReadAllBytes(fileName);
4:
Syst …
