C#: Removed invalid strings from example (#2266)

C#'s example page contained some invalid strings.
This commit is contained in:
Michael Schmidt 2020-03-25 11:44:33 +01:00 committed by GitHub
parent 42b15463cb
commit c917a8ca04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -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>
}</code></pre>