Tagged Questions
4
votes
5answers
1k 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
462 views
Reading in a binary file containing an unknown quantity of structures (C#)
Ok, so I currently have a binary file containing an unknown number of structs like this:
private struct sTestStruct
{
public int numberOne;
public int numberTwo;
public int[] numbers; // ...
0
votes
1answer
64 views
Binary Reader and Writer open at same time?
I'm writing code that deals with a file that uses hashes. I need to read a chunk, then hash it, then write it, then read another chunk, etc.
In other words, I need to do a lot of reading and ...