Exemple #1
0
 public static bool Exit(EventWaitHandle handle)
 {
     if (handle == null)
     {
         throw new ArgumentNullException("handle");
     }
     return(handle.Exit());
 }