Tagged Questions

-2
votes
3answers
135 views

In C++, how system implement the buffered stream ?

Can someone write some sample code to explain this concept? I know what a buffered stream is used for, but I also would like to know how to implement that. Thanks in advance!
1
vote
2answers
792 views

c# - StreamReader.ReadLine does not work properly!

Simply I have been trying to implement what BufferedStreamReader does in Java. I have a socket stream open and just want to read it in a line oriented fashion -line by line. I have following …
1
vote
2answers
542 views

Are there an alternative to System.IO.BufferedStream in C#?

I receive the follow exception: System.NotSupportedException : This stream does not support seek operations. at System.Net.Sockets.NetworkStream.Seek(Int64 offset, SeekOrigin origin) at …