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>
I can do this in Visual Basic, How can I do this in C#
|
|||
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.
|
Try:
or
Another way is using
but I recommend to use XDocument. It is newer than |
||||
|
|
new XElement("Employees")would work here, but XElement can also parse larger [verbatim] text. – user166390 Jan 14 at 4:46