コード例 #1
0
        public void Send(FileChangeNotification fileChangeNotification)
        {
            var onFileChangeNotification = OnFileChangeNotification;

            if (onFileChangeNotification != null)
            {
                onFileChangeNotification(fileChangeNotification);
            }
        }
コード例 #2
0
 public void Send(FileChangeNotification fileChangeNotification)
 {
     var onFileChangeNotification = OnFileChangeNotification;
     if (onFileChangeNotification != null)
         onFileChangeNotification(fileChangeNotification);
 }