what is the maximum interval for a timer to work in C#?
is it the maximum value of int 32?
can i change it to int 64?
If i change, that is ONE big IF, will a timer still be working?
what is the maximum interval for a timer to work in C#?
is it the maximum value of int 32?
can i change it to int 64?
If i change, that is ONE big IF, will a timer still be working?
System.Timers.Timer.Interval:
You cannot assign an Int64 to an Int32 (that is larger than
Int32.MaxValue
)Of interest: Comparing the Timer Classes in the .NET Framework Class Library
Oddly enough if you search for winforms timer it comes right up. The interval property is an int.