I have the following XML file saved:
<E:Events xmlns:E="Event-Details">
<Date>12/27/2012</Date>
<Time>11:12 PM</Time>
<Message>Happy Birthday</Message>
</E:Events>
I am using XElement to load the above XML file.
I want to get the Element Value of Date, Time and Message i.e. 12/27/2012, 11:12 PM and Happy Birthday.
How can I retrieve these values.
I have searched a lot on this but could not find anything.
Any help appreciated...