In Java timer has following functions
timer.setInitialDelay(1000);
timer.setRepeats(false);
So,I their's analogue in .NET
timer.Interval = 1000;
timer.AutoReset = false;
Is it wright??
Printable View
In Java timer has following functions
timer.setInitialDelay(1000);
timer.setRepeats(false);
So,I their's analogue in .NET
timer.Interval = 1000;
timer.AutoReset = false;
Is it wright??
yes, interval and AutoReset properties are exactly those.