If I have an instance of a System.Timers.Timer that has a long interval - say 1 minute, how can I find out if it is started without waiting for the Tick?
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Should I use static function in c# where many call
You should check that timer is enabled
Use the timer's Enabled property.
System.Timer.Timer.Enabled
should work, when you call "Start" it sets Enabled to TRUE, "Stop" sets it to FALSE.If Timer.Enabled is true, your timer is running.
Calling Timer.Start sets Enabled to true.
Calling Timer.Stop sets Enabled to false.
If Timer.AutoReset is true, then Enabled will automatically be set to false the first time the timer expires.