XML LINQ C# Tutorial

using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using System.Text;
    class Program
    {
        static void Main(string[] args)
        {
            XElement xdoc = XElement.Parse(@"
                    
                      
                        
                        
                      
                    

                    ");
            Console.WriteLine(xdoc);
        }
    }