fork download
  1. using System.Xml;
  2.  
  3. class X{
  4. public static void Main(){
  5. XmlDocument doc1 = new XmlDocument();
  6. XmlDocument doc2 = new XmlDocument();
  7. XmlElement e1 = doc1.CreateElement("root");
  8. doc2.AppendChild(e1);
  9. }
  10. }
Runtime error #stdin #stdout 0.02s 43480KB
stdin
Standard input is empty
stdout
Standard output is empty