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.

Possible Duplicate:
Use XML Literals in C#?

I can do this in Visual Basic, How can I do this in C#

    Dim xmlTree As XElement = <Employees></Employees>
share|improve this question
C# (at least 4 and below) does not support XML literals. new XElement("Employees") would work here, but XElement can also parse larger [verbatim] text. – user166390 Jan 14 at 4:46

marked as duplicate by pst, DocMax, Peter O., Anoop Vaidya, Dharmendra Jan 14 at 7:18

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted
XDocument document = XDocument.Parse("<Employees></Employees>")
share|improve this answer

Try:

XDocument document = XDocument.Parse("<Employees></Employees>")

or

XElement root = new XElement("Employees")

Another way is using XmlDocument class:

XmlDocument document = new XmlDocument();
document.LoadXml("<Employees></Employees>");

but I recommend to use XDocument. It is newer than XmlDocument, it has more clean API and support Linq To Xml.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.