W
www.msmobiles.com
..NET CF has no BufferedStream. Has anybody made an
implemention of this class for .NET CF?
implemention of this class for .NET CF?
Alex Yakhnin said:In most cases you can get away without it by using either
FileStream or MemoryStream. What're you trying to do?
Alex Yakhnin said:In most cases you can get away without it by using either
FileStream or MemoryStream. What're you trying to do?
The best way to proceed is to tell us *what* you want to do, rather than
*how* you want to do it. This will allow someone to suggest a good
alternative...
www.msmobiles.com said:"Paul G. Tobey [eMVP]"
The best way to proceed is to tell us *what* you want to do, rather than
*how* you want to do it. This will allow someone to suggest a good
alternative...
I need this:
Stream a_stream;
//... do something
BufferedStream s1 = new BufferedStream(in_stream);
it is reading from stream through the buffered stream.
the input stream may be file or something else.
I cannot use FileStream because it has no constructor
with like FileStream(Stream something).
"Paul G. Tobey [eMVP]" - if you don't know, then don't
speak up! I cannot tell you everything about application
of course - don't be that naive. Are you another MVP that
posts hundreds of vague "tips" that are no help at all,
but just pretending? I need concrete help and concrete
answer, but I see that I am not going anywhere here. I
will have to hack it myself .....