using System;
using ChoETL;
public class Program
{
public static void Main()
var reader = ChoXmlReader.LoadText(xml);
dynamic rec;
while ((rec = reader.Read()) != null)
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>";