How to readfile in a stream array

  • Thread starter Thread starter Sebastiaan
  • Start date Start date
S

Sebastiaan

Hi !!
Could some one perhaps give me a bit more info on reading the data in a
stream?
We use readfile at the moment to get the data from a buffer from the port.
Would it be better to use a BinaryReader in some kind of way?
And how???

Regards,

Sebastiaan
 
How you read a stream depends on what's in it. A stream represents a stream
of bits. It can be anything. What do you want it to be?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.
 
Hi,

By default a stream is an array of bytes. so you can read it without much
problem

you need to be more precise with your problem

cheers,
 
Back
Top