We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc67fe commit ab4ed35Copy full SHA for ab4ed35
snippets/csharp/System/String/Trim/Trim1.cs
@@ -8,10 +8,10 @@ public static void Main()
8
char[] charsToTrim = { '*', ' ', '\''};
9
string banner = "*** Much Ado About Nothing ***";
10
string result = banner.Trim(charsToTrim);
11
- Console.WriteLine("Trimmmed\n {0}\nto\n '{1}'", banner, result);
+ Console.WriteLine("Trimmed\n {0}\nto\n '{1}'", banner, result);
12
13
// The example displays the following output:
14
- // Trimmmed
+ // Trimmed
15
// *** Much Ado About Nothing ***
16
// to
17
// 'Much Ado About Nothing'
0 commit comments