readline is a member of Streamreader, what member reads one line of text and is a member if BinaryReader in VB.net?
Printable View
readline is a member of Streamreader, what member reads one line of text and is a member if BinaryReader in VB.net?
I don't think there is an equivalent for BinaryReader; the StreamReader.ReadLine method assumes the stream you are working with is delimited by CrLf (or is it Lf) characters at the end of each line. Binary files aren't structured that way.