私は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();
私の質問は、「フラッシュ」操作は技術面から正確に何をするのですか? この「フラッシング」の全体的な概念は何ですか?