C# String Remove klasının kulanımı

public string Remove(int startIndex)

public string Remove(int startIndex, int length) 
string msg = "Welcome to Tutlane";
msg.Remove(5);

Sonuç:Welco

msg.Remove(3, 7);

Sonuç:Wel Tutlane