Ejemplo n.º 1
0
 public static bool CatchErrorBool([NotNull] this SyncLock syncLock, Action func, Action <Exception> onError)
 => syncLock.Lock(() => CatchErrorBool(func, onError));
Ejemplo n.º 2
0
 public static bool CatchErrorBool([NotNull] this SyncLock syncLock, Action func)
 => syncLock.Lock(() => CatchErrorBool(func));