G
Guest
I am using the BinaryWriter to write binary information to the end of a file. When i write the info the string always starts with â–¡, so my string turns out to be "â–¡MyString", what am i missing here
--- Here is the code that i am using to make this happen, like i said, it works but when i use the binaryReader to read the file i get â–¡ in front of the string
Dim binWriter As New BinaryWriter(sfile
binWriter.BaseStream.Seek(-129, SeekOrigin.End
binWriter.Write("MyString"
binWriter.Flush(
binWriter.Close(
sfile.Close(
Thanks Eric
--- Here is the code that i am using to make this happen, like i said, it works but when i use the binaryReader to read the file i get â–¡ in front of the string
Dim binWriter As New BinaryWriter(sfile
binWriter.BaseStream.Seek(-129, SeekOrigin.End
binWriter.Write("MyString"
binWriter.Flush(
binWriter.Close(
sfile.Close(
Thanks Eric