        class MonitorSample
        {
            //Define the queue to safe thread access.
            private Queue m_inputQueue;
            public MonitorSample()
            {
                m_inputQueue = new Queue();
            }
            //Add an element to the queue and obtain
            //the monitor lock for the queue object.
            public void AddElement(object qValue)
            {
                //Lock the queue.
                Monitor.Enter(m_inputQueue);
                //Add element
                m_inputQueue.Enqueue(qValue);
                //Unlock the queue.
                Monitor.Exit(m_inputQueue);
            }
            //Try to add an element to the queue.
            //Add the element to the queue only 
            //if the queue object is unlocked.
            public bool AddElementWithoutWait(object qValue)
            {
                //Determine whether the queue is locked 
                if (!Monitor.TryEnter(m_inputQueue))
                    return false;
                m_inputQueue.Enqueue(qValue);

                Monitor.Exit(m_inputQueue);
                return true;
            }
            //Try to add an element to the queue. 
            //Add the element to the queue only if during 
            //the specified time the queue object will be unlocked.
            public bool WaitToAddElement(object qValue, int waitTime)
            {
                //Wait while the queue is locked.
                if (!Monitor.TryEnter(m_inputQueue, waitTime))
                    return false;
                m_inputQueue.Enqueue(qValue);
                Monitor.Exit(m_inputQueue);

                return true;
            }
            //Delete all elements that equal the given
            //object and obtain the monitor lock for the queue object.
            public void DeleteElement(object qValue)
            {
                //Lock the queue.
                Monitor.Enter(m_inputQueue);
                int counter = m_inputQueue.Count;
                while (counter > 0)
                {
                    //Check each element.
                    object elm = m_inputQueue.Dequeue();
                    if (!elm.Equals(qValue))
                    {
                        m_inputQueue.Enqueue(elm);
                    }
                    --counter;
                }
                //Unlock the queue.
                Monitor.Exit(m_inputQueue);
            }
            //Print all queue elements.
            public void PrintAllElements()
            {
                //Lock the queue.
                Monitor.Enter(m_inputQueue);
                IEnumerator elmEnum = m_inputQueue.GetEnumerator();
                while (elmEnum.MoveNext())
                {
                    //Print the next element.
                    Console.WriteLine(elmEnum.Current.ToString());
                }
                //Unlock the queue.
                Monitor.Exit(m_inputQueue);
            }
        }
