CClash.DirectoryWatcher.OnChange C# (CSharp) Method

OnChange() private method

private OnChange ( string file ) : void
file string
return void
        void OnChange(string file)
        {
            file = Path.GetFileName(file);
            if (Files.Contains(file))
            {
                if (FileChanged != null)
                {
                    FileChanged(this, new FileChangedEventArgs() { FilePath = file });
                }
            }
        }