|
2 |
edited tags
|
||
|
1 |
|
||
Difference in writing string vs. char array with System.IO.BinaryWriterI’m writing text to a binary file in C# and see a difference in quantity written between writing a string and a character array. I’m using System.IO.BinaryWriter and watching BinaryWriter.BaseStream.Length as the writes occur. These are my results:
I don’t understand why the string overload writes 4 bytes when I’m writing only 3 ASCII characters. Can anyone explain this?
|
||||
