From 558db33bf1094d6a0224fd43a34b3c823e8b8c8a Mon Sep 17 00:00:00 2001 From: Stuart Mosquera Date: Thu, 28 Aug 2025 23:08:55 -0300 Subject: [PATCH] add output for CreateTextNode method --- .../System.Xml/XmlDocument/CreateElement/source.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/snippets/csharp/System.Xml/XmlDocument/CreateElement/source.cs b/snippets/csharp/System.Xml/XmlDocument/CreateElement/source.cs index b97e4fd146e..d27cfe01c1a 100644 --- a/snippets/csharp/System.Xml/XmlDocument/CreateElement/source.cs +++ b/snippets/csharp/System.Xml/XmlDocument/CreateElement/source.cs @@ -24,4 +24,14 @@ public static void Main() doc.Save(Console.Out); } } +/* + The example displays the following output: + + Display the modified XML... + + + Pride And Prejudice + 19.95 + +*/ //