Csharp/CSharp Tutorial/XML/Xml URL Local Name — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 12:17, 26 мая 2010

Get XML BaseURI and Local Name

using System;
using System.Xml;
class MainClass
{
    static void Main(string[] args)
    {
        XmlTextReader reader = new XmlTextReader(@"C:\books.xml");
        Console.WriteLine(reader.Name);
        Console.WriteLine(reader.BaseURI);
        Console.WriteLine(reader.LocalName);
    }
}
file:///C:/books.xml