Right now I am using:
XElement xe = XElement.ReadFrom
which requires an XmlReader
:
XmlReader reader = XmlTextReader.Create
which requires a string, and that requires me to pass a StringReader
:
new StringReader
which requires a TextReader/StreamReader
to finally be able to pass the file path to it:
TextReader textReader = new StreamReader ( file );
Is the simpliest way to do this? I already have code that uses an XElement
so it works fine but I want to cut down the number of steps to get the XElement
from an xml file. Something like:
XElement xe = XElement.ReadFrom (string file);
Any ideas?
Joan, use XDocument.Load(string):
XDocument doc = XDocument.Load("PurchaseOrder.xml");
Some comments:
XmlTextReader.Create
. use XmlReader.Create
. It's a static method, so it doesn't make a difference which derived class you use to refer to it. It's misleading to use XmlTextReader.Create
, since it looks like that's different from XmlReader.Create
. It's not.XmlReader.Create
has an overload that accepts a string, just like XDocument.Load
does: XmlReader.Create(string inputUri)
.XElement.ReadFrom
. It's actually XNode.ReadFrom
.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With