线程等待文件输入模式
当线程到达文件末尾时等待 C# 中的文件输入的正常模式是什么 需要等待。任何特定的编码方式,简洁而优雅。
谢谢。 鲍勃.
What's the normal pattern for a thread to wait for file input in C# when it reaches end of file and
needs to wait. Any particularly way of coding it, which is neat and elegant.
Thanks.
Bob.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
并不是真正的模式,而是
FileSystemWatcher
( http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx)可能会派上用场。Not really a pattern but the
FileSystemWatcher
(http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx) might come in handy.我有兴趣看看其他答案是什么。我还没有找到一个优雅的解决方案。这是我过去所做的。
希望这有帮助。
鲍勃
I will be interested in seeing what the other answers are. I have not found an elegant solution. Here is what I have done in the past.
Hope this helps.
Bob