在 C#.Net 中自动调用函数
我想自动调用一个函数,比如每 2 秒调用一次。
这对于 .NET 来说是可能的吗?如果可以的话,您可以粘贴一些代码吗? 这将在 Windows Mobile 6 SDK 中使用,
谢谢
I would like to call a function automatically lets say every 2 secs.
Is this possible with .NET, and if so can you please paste some code?
This will be used in Windows Mobile 6 SDK
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看一下计时器类:
您可以在链接的 MSDN 文档中找到示例。
Have a look at the Timer Class:
You can find an example in the linked MSDN documentation.
使用 System.Threading.Timer:
http:// /msdn.microsoft.com/library/system.threading.timer.aspx
Use the
System.Threading.Timer
:http://msdn.microsoft.com/library/system.threading.timer.aspx
您需要使用 Timer 类。
The Timer Class is what you need to use.