AT:
How to get root element attribute value (first element in my xml file) via LINQ.
.cs:
XDocument xmlDoc = XDocument.Load(targetFileName);
.xml:
<timetable ascttversion="2010" options="idprefix:realID">
I want to read the meaning options.
source
share