System.Threading.Timer.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
        }

Same methods

Timer::Dispose ( System notifyObject ) : bool

Usage Example

Example #1
0
 private void OnNorthGuideTimer(Object stateInfo)
 {
     Request(":Qn#");
     northGuideBusy = false;
     northGuideTimer?.Dispose();
     northGuideTimer = null;
 }
All Usage Examples Of System.Threading.Timer::Dispose