Start() 공개 메소드

public Start ( ) : FileSystemWatcher
리턴 FileSystemWatcher
예제 #1
0
        public static FileSystemWatcher Watch(string path, string filter = null)
        {
            var fsw = new FileSystemWatcher(path, filter);

            return(fsw.Start());
        }