Read XML content as double : Xml Read « XML « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Xml;

    public class MainClass
    {
        public static void Main()
        {
            XmlReader reader;
            double totalPrice=0;
            
            reader = XmlReader.Create("pubs.xml");
            while (reader.Read())
            {
                if (reader.IsStartElement() && reader.Name=="titles")
                {
                    reader.MoveToAttribute("price");
                    totalPrice += reader.ReadContentAsDouble();
                }
            }
        }
    }








30.4.Xml Read
30.4.1.To read from an XML file
30.4.2.Read XML from URL
30.4.3.Read/Write Xml document with FileStream
30.4.4.Load xml from xml file directly
30.4.5.Read XML content as double
30.4.6.Set up XmlReaderSettings
30.4.7.Set Book As Current