Commit c917a8ca04efcb8966fb5e800def742776a4e4e0

Michael Schmidt 2020-03-25T11:44:33

C#: Removed invalid strings from example (#2266) C#'s example page contained some invalid strings.

diff --git a/examples/prism-csharp.html b/examples/prism-csharp.html
index c6d76c2..fc60c71 100644
--- a/examples/prism-csharp.html
+++ b/examples/prism-csharp.html
@@ -5,12 +5,9 @@ comment */</code></pre>
 
 <h2>Strings</h2>
 <pre><code>"foo \"bar\" baz"
-'foo \'bar\' baz'
 @"Verbatim strings"
 @"Luis: ""Patrick, where did you get that overnight bag?""
     Patrick: ""Jean Paul Gaultier.""";
-@'Luis: ''Patrick, where did you get that overnight bag?''
-    Patrick: ''Jean Paul Gaultier.''';
 </code></pre>
 
 <h2>Full example</h2>
@@ -57,4 +54,4 @@ public static DialogResult InputBox(string title, string promptText, ref string 
   DialogResult dialogResult = form.ShowDialog();
   value = textBox.Text;
   return dialogResult;
-}</code></pre>
\ No newline at end of file
+}</code></pre>