Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有从文件中读取的 winform 并向 web 发出 post 请求。一切正常,但我想要一个文本框,我可以在每个请求之间放置时间。
例如:
我运行我的应用程序并使用(1000rows)读取整个文件,并在每一行之后等待 2 秒。如果我想要不同的值,我每次使用 Thread.Sleep() 必须在代码端更改它......最好有选项从我的表单中更改它。
谢谢
这是你想要的吗?
Thread.Sleep(int.Parse(TextBoxTime.Text));