コード例 #1
0
 public static bool CatchErrorBool([NotNull] this SyncLock syncLock, Action func, Action <Exception> onError)
 => syncLock.Lock(() => CatchErrorBool(func, onError));
コード例 #2
0
 public static bool CatchErrorBool([NotNull] this SyncLock syncLock, Action func)
 => syncLock.Lock(() => CatchErrorBool(func));