I am very new to C#. I have XML file (text.xml). I want to read that in XmlDocument and store the stream in string variable. Can anyone help me, please?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
Use
|
||||
|
|
|
If your .NET version is newer than 3.0 you can try using |
||||
|
|
|
The quickest way, not for very large files:
But before you proceed, there are 2 XML libraries in .NET, you might like the newer
XDocument (XLinq or Linq-to-XML) is easier to use and usually faster. |
|||||||
|
|
Hope you dont mind Xml.Linq and .net3.5+
Depending on what you are interested in, you can probably skip the whole 'string' var part and just use XLinq objects |
||||
|
|
I am very new to c#OK very new to google? This is what i get msdn.microsoft.com/en-us/library/c445ae5y(v=vs.80).aspx when I google "xmldocument example" – L.B Feb 1 '12 at 23:46