Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions snippets/csharp/System.Xml/XmlDocument/CreateElement/source.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// <Snippet1>
using System;
using System.IO;
Expand All @@ -24,4 +24,14 @@
doc.Save(Console.Out);
}
}
/*
The example displays the following output:

Display the modified XML...
<?xml version="1.0" encoding="us-ascii"?>
<book genre="novel" ISBN="1-861001-57-5">
<title>Pride And Prejudice</title>
<price>19.95</price>
</book>
*/
// </Snippet1>
Loading