Example #1
0
        public static FileSystemWatcher Watch(string path, string filter = null)
        {
            var fsw = new FileSystemWatcher(path, filter);

            return(fsw.Start());
        }