Skip XML Node - CSharp System.Xml

CSharp examples for System.Xml:XML Node

Description

Skip XML Node

Demo Code

//   Licensed under the Apache License, Version 2.0 (the "License");
using System.Xml;

public class Main{
        /// <summary>
        /// /*w w w. j  a  v a2  s .co m*/
        /// </summary>
        /// <param name="reader"></param>
        internal static void SkipNode(XmlReader reader)
        {
            reader.Read();
            reader.MoveToContent();
        }
}

Related Tutorials