Guest User

Untitled

a guest
Jun 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. XElement InputNodes = XElement.Parse(InputXML);
  2. m_Command = InputNodes.Element("Command");
  3.  
  4. foreach (XElement e in root.DescendantsAndSelf())
  5. {
  6. if (e.Name.Namespace == string.Empty)
  7. {
  8. e.Name = ns + e.Name.LocalName;
  9. }
  10. }
Add Comment
Please, Sign In to add comment