コード例 #1
0
        private void readWriterLockToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var nonexclusiveLock = new NonExclusiveLockExample(AddOutput);

            nonexclusiveLock.StartReadWriterLock();
        }
コード例 #2
0
        private void semaphoreToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var nonexclusiveLock = new NonExclusiveLockExample(AddOutput);

            nonexclusiveLock.StartSemaphore();
        }