System.Timers.Timer.Timer C# (CSharp) Méthode

Timer() public méthode

Initializes a new instance of the class, with the properties set to initial values.

public Timer ( ) : System.Threading
Résultat System.Threading
        public Timer()
        : base()
        {
            _interval = 100;
            _enabled = false;
            _autoReset = true;
            _initializing = false;
            _delayedEnable = false;
            _callback = new TimerCallback(MyTimerCallback);
        }

Same methods

Timer::Timer ( double interval ) : System.Threading