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.
在 DLL 中,我有一个类用于System.Threading.Timer定期执行特定方法。我在我的 WINFORM 应用程序中使用这个 DLL,但计时器没有触发。
System.Threading.Timer
即使我维护对此计时器的引用,它也只执行一次。
关于为什么这个计时器不起作用的任何想法?
您要么需要将 AutoReset 属性设置为 true,要么每次经过时再次调用 Start()。