RadheyJang
India
Software Developer
You need to use XPath for this...
using System.Xml.XPath;
string xml = @"
RadheyJang
India
Software Developer
5
ArunaTiwari
India
SoFtwareCoder
3
A
NA
";
XDocument xmlDoc = XDocument.Parse(xml);
var vrresult = from a in xmlDoc.XPathSelectElements("/Peoples/People")
select new
{
Name = a.Element("Name").Value,
Location = a.Element("Location").Value,
Point = a.Element("Point").Value
};