CClash.DirectoryWatcher.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (w.EnableRaisingEvents)
            {
                w.EnableRaisingEvents = false;
                w.Dispose();
                w = null;
            }
        }
    }