Semaphore.cs 411 B

1234567891011
  1. namespace System.Threading
  2. {
  3. partial class Semaphore
  4. {
  5. int ReleaseCore (int releaseCount) => throw new NotImplementedException ();
  6. static OpenExistingResult OpenExistingWorker(string name, out Semaphore result) => throw new NotImplementedException ();
  7. void CreateSemaphoreCore(int initialCount, int maximumCount, string name, out bool createdNew) => throw new NotImplementedException ();
  8. }
  9. }