I used the XmlWriter to create this string:
<EventInput>
<Group>12345</Group>
<Events>
<Event Id="100" />
<Event Id="101" />
<Event Id="102" />
<Event Id="103" />
<Event Id="104" />
</Events>
</EventInput>
What would be the simplest way to read and parse this XML string into a C# object (I'm not showing the private members and properties for simplicity)
class EventInput
{
public int group;
public List<int> EventIds = new List<int>();
}