Published by fm on Mar 7th, 2007 in basics, c#, linq, xml with 1 Comment
System.Linq.Xml - The XML object model for Linq
XElement is the basic building block (or element) of an XML document in the System.Linq.Xml world. It is, after all, just an XML element. Using XElement, the most basic XML document can be formed with this:
PLAIN TEXT
XElement doc = new XElement("DocumentRoot");
This will give you a document that [...]
Tags:
Published by fm on Feb 15th, 2007 in basics, linq, visual studio 2008, xml with 2 Comments
So, Linq is supposed to be the future. At least that's what they say. I'll admit, I like it. Right now, I care about how to do stuff with it. There is a lot of great theory out there on the net about it so I really encourage anyone who wants to use Linq [...]
Tags: