XML declaration
In this chapter you will learn:
Get Encoding, Version and standalone from XML declaration
using System;//from ja va2s . c o m
using System.Linq;
using System.Data.Linq;
using System.Xml.Linq;
class Program {
static void Main(string[] args) {
XDocument xml = XDocument.Load("Hello_XLINQ.xml");
Console.WriteLine("Encoding: {0}", xml.Declaration.Encoding);
Console.WriteLine("Version: {0}", xml.Declaration.Version);
Console.WriteLine("Standalone: {0}", xml.Declaration.Standalone);
}
}
Next chapter...
What you will learn in the next chapter:
Home » C# Tutorial » XML Linq