LINQ XML C# Book

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
class Program
{
static void Main()
{
string xml = @"60";
XElement customer = XElement.Parse(xml);
}
}