12
1
using System;
2
using System.Text;
3
public class Program {
4
public static void Main() {
5
6
StringBuilder sb = new StringBuilder("Hello, Welcome to the C# Course!");
7
8
sb.Remove(0, 7); // The first argument is the start Index, and the second is the length of the string to be removed.
9
10
Console.WriteLine(sb.ToString());
11
}
12
}
Cached Result
Please select one:
1. Json
2. Xml
3. Csv
>
1. Json
2. Xml
3. Csv