// Implement the IDeque<T> interface. public void PushFront(T value) { lock (SyncRoot) { deque.PushFront(value); } }