Mutex.cs 378 B

1234567891011121314
  1. namespace System.Threading
  2. {
  3. partial class Mutex
  4. {
  5. void CreateMutexCore (bool initiallyOwned, string name, out bool createdNew) => throw new NotImplementedException ();
  6. static OpenExistingResult OpenExistingWorker (string name, out Mutex result) => throw new NotImplementedException ();
  7. public void ReleaseMutex ()
  8. {
  9. throw new NotImplementedException ();
  10. }
  11. }
  12. }