LINQ-to-XML provides a SQL-like query experience for navigating, parsing, and aggregating data stored in XML documents.
I'm working on a little web project and would like to read/write to an XML file. Performance is my …
.net linq-to-xml xmldocument xmlserializer xmlreaderI'm working with an existing XML document which has a structure (in part) like so: <Group> <Entry&…
c# linq linq-to-xml anonymous-typesI have the following code: class Program { static void Main(string[] args) { using (var stream = File.Create(@"C:\test.xml")) { …
c# xml linq-to-xmlI'm trying to write a generic method for fetching an XElement value in a strongly-typed fashion. Here's what I have: …
c# generics casting linq-to-xml xelementI have looked a bunch of XML samples using XDocument and XElement but they all seem to have self closing …
c# xml linq-to-xml xelementSo I have some XML that generally looks like this <wd:Data xmlns:wd="urn:com.foo.bar/GetResult"&…
c# linq linq-to-xml xelementI have my XML File as follows: <states> <state name ="Alaska"> <Location Name="loc1"> &…
asp.net c#-4.0 dictionary linq-to-xml idictionaryI have an application in which I am using XPathNavigator to iterate nodes. It is working fine. But I want …
c# .net-4.0 linq-to-xml xmldocument xpathnavigatorI have a class that has the following properties: public class Author { public string FirstName { get; set; } public string LastName { …
c# .net linq-to-xml xelementI am trying to get 4 List deep List collection, List<List<List<List<int>>&…
c# .net xml linq-to-xml nested-groups