示例#1
0
 public AsyncDirectoryOperations(IDirectoryOperations synchronousOperations)
 {
     if (synchronousOperations == null)
     {
         throw new ArgumentNullException("synchronousOperations");
     }
     _synchronousOperations = synchronousOperations;
 }
示例#2
0
		public AsyncDirectoryOperations(IDirectoryOperations synchronousOperations)
		{
			if (synchronousOperations == null) throw new ArgumentNullException("synchronousOperations");
			_synchronousOperations = synchronousOperations;
		}