private static DLink PullFront(ref DLink pHead)
        {
            Debug.Assert(pHead != null);
            DLink pNode;

            pNode = DLink.PullFront(ref pHead);
            Debug.Assert(pNode != null);
            return(pNode);
        }