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