4
votes
3answers
63 views
Issue with C#/.NET BinaryReader.ReadChars()
Hi all,
I've run into what I believe is an issue with the BinaryReader.ReadChars() method. When I wrap a BinaryReader around a raw socket NetworkStream occasionally I get a stream corruption where …
0
votes
1answer
38 views
Strange problem when trying to read data
When I write:
var tagType = _reader.ReadByte();
while (tagType != 8)
{
var skip = ReadNext3Bytes() + 11;
_reader.BaseStream.Position += skip;
tagType = _reader.ReadByte();
}
...it's …
0
votes
2answers
286 views
C# BinaryReader “stream does not support seek operations”
I am trying to download files from an ftp server using C# and ftpwebrequest. I can get the bytes using BinaryReader, but when I try to read the stream using br.ReadBytes(int), I get an error that …
0
votes
4answers
203 views
Is there a BinaryReader in C++ to read data written from a BinaryWriter in C#?
I've written several ints, char[]s and the such to a data file with BinaryWriter in C#. Reading the file back in (in C#) with BinaryReader, I can recreate all of the pieces of the file perfectly.
…
1
vote
3answers
247 views
0x00 in a binary file vb.net
UPDATED BELOW
I am reading a Binary file using BinaryReader in VB.Net
the structure of each row in the file is
"Category" = 1 byte
"Code" = 1 byte
"Text" = 60 Bytes
Dim Category As Byte
…
5
votes
3answers
332 views
Faster (unsafe) BinaryReader in .NET
I came across a situation where I have a pretty big file that I need to read binary data from.
Consequently, I realized that the default BinaryReader implementation in .NET is pretty slow. Upon …
4
votes
5answers
470 views
c# - reading from binary log file that is updated every 6 seconds with 12k of data
I have a binary log file with streaming data from a sensor (Int16).
Every 6 seconds, 6000 samples of type Int16 are added, until the sensor is disconnected.
I need to poll this file on regular …
1
vote
3answers
231 views
Converting from byte[] to string
Hi,
I have the following code:
using (BinaryReader br = new BinaryReader(
File.Open(FILE_PATH, FileMode.Open, FileAccess.ReadWrite)))
{
int pos = 0;
int length = (int) …
0
votes
1answer
46 views
Inconsistency in file before and after upload to Oracle DB
Hi,
I'm trying to get my website to allow users to upload various files (HttpPostedFile), which are then stored in an Oracle database as BLOBs. Here's what I've got so far:
public static bool …
0
votes
2answers
98 views
What is the Best way to deserialize a null-terminated string in .NET?
I am reading a message from my network connection which is serialized as a series of null-terminated strings (and other binary data)
I could read a char at a time using a BinaryReader, until I find a …
