Exemplo n.º 1
0
        // 把strText构造的新对象插入到this的后面。返回this
        /// <summary>
        /// 用指定的字符串构造出新的节点,插入到当前节点的后面兄弟位置
        /// </summary>
        /// <param name="strText">用于构造新节点的字符串</param>
        /// <returns>当前节点</returns>
        public MarcNode after(string strText)
        {
            MarcNodeList targets = new MarcNodeList(this);

            targets.after(strText);
            return(this);
        }