使用线程的 C# 控制台应用程序
我有一个控制台应用程序。我需要实现一个无限循环的 do while 和一个每 3 秒返回页面中的项目列表的线程。我怎样才能做到这一点?我有一个名为 getId( string URL) 的方法。如何在do while中实现线程?
I have a console app. I need to implement a do while that loop infinitely and a thread that at every 3 seconds returns a list of items from a page. How can I do that? I have a methold called getId( string URL) . how do I implement the thread in the do while?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 System.Timers.Timer 类:
Using System.Timers.Timer class:
我不会使用计时器 - 如果项目检索时间超过三秒会发生什么?
你能接受 sleep(3000) 循环吗?
平均值,
马丁
I would not use a timer - what happens if the item retrieval takes longer than three seconds?
Can you live with a sleep(3000) loop?
Rgds,
Martin