Csharp/CSharp Tutorial/String/String Remove
Версия от 15:31, 26 мая 2010; (обсуждение)
String removes from start index to end index
using System;
class MainClass {
public static void Main() {
string str = "This is a test";
Console.WriteLine("Original string: " + str);
// Remove
str = str.Remove(4, 5);
Console.WriteLine(str);
}
}
Original string: This is a test This test