Stumps.StumpsRunner.Dispose C# (CSharp) Method

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (!_disposed)
            {

                _disposed = true;

                if (_started)
                {
                    this.Shutdown();
                }

            }

            GC.SuppressFinalize(this);
        }