I am having trouble wrapping my mind around how to do this in linq.
How can i convert this:
<mytags>
<tag1>hello</tag1>
<tag2>hello</tag2>
<tag1>MissingTag</tag1>
<tag1>Goodbye</tag1>
<tag2>Goodbye</tag2>
</mytags>
to this
List<MyObject>
public class MyObject
{
public tag1;
public tag2;
}