static void Main(string[] args) {
using (var r = ChoXmlReader<EmployeeClass>.LoadText(emp).WithXPath("//")) {
static string emp = @"<Employees>
public class EmployeeClass{
public EmployeeRec[] Employee { get; set; }
public class EmployeeRec{
[ChoXmlNodeRecordField(XPath = "//@Id")]
public int Id { get; set; }
public string Name { get; set; }