does calling Dispose()
on an acquired named system mutex (eg via using
in code below) release the mutex?
using (var m = new Mutex(false, "name")) {
m.WaitOne();
}
EDIT: is the behavior documented? from my disassembly Dispose()
is handled by the SafeWaitHandle
base class of Mutex
and i'm unclear how this translates.