The following code uses foreach loop to list elements.
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 config = XElement.Parse(xml);
foreach (XElement child in config.Elements())
Console.WriteLine(child.Name);
}
}
The output:
client