using System;
using ChoETL;
public class Program
{
public static void Main()
foreach (dynamic rec in ChoXmlReader.LoadText(xml))
Console.WriteLine(rec.Id);
Console.WriteLine(rec.Name);
}
static string xml = @"<Employees>
<Employee Id='1'>
<Name>Tom</Name>
</Employee>
<Employee Id='2'>
<Name>Mark</Name>
</Employees>";