C#TCP服务器刷新?

时间:2013-10-13 13:54:01

标签: c# tcp protocol-buffers

我正在阅读有关在C#中维护TCP服务器的教程,并且面对此:

 Console.Write("> ");
 sData = Console.ReadLine();

 // write data and make sure to flush, or the buffer will continue to 
 // grow, and your data might not be sent when you want it, and will
 // only be sent once the buffer is filled.
 _sWriter.WriteLine(sData);
 _sWriter.Flush();

我的问题是,“冲洗”操作究竟是从技术方面做了什么?这整个“法拉盛”的概念是什么?

0 个答案:

没有答案