How do you retrieve a comment from an XMLElement using Linq in VB? For example:
<MyXML>
<event type="MyEvent" uid="3">
<start>2009-02-01T12:00:00</start>
<stop>2009-02-01T12:00:30</stop>
<New>1</New>
<x>20</x>
<y>60</y>
<!--Whatever-->
</event>
<event type="MyEvent" uid="3">
<start>2009-02-01T11:00:00</start>
<stop>2009-02-01T11:00:30</stop>
<New>3</New>
<x>21</x>
<y>67</y>
<!--Second Whatever-->
</event>
</MyXML>
If I wanted to loop through the events and retrieve the comments.