private void readWriterLockToolStripMenuItem_Click(object sender, EventArgs e) { var nonexclusiveLock = new NonExclusiveLockExample(AddOutput); nonexclusiveLock.StartReadWriterLock(); }
private void semaphoreToolStripMenuItem_Click(object sender, EventArgs e) { var nonexclusiveLock = new NonExclusiveLockExample(AddOutput); nonexclusiveLock.StartSemaphore(); }