I want to remove last three characters from a string:
string myString = \"abcdxxx\";
Note that the string is dynamic data.
items.Remove(items.Length - 3)
string.Remove() removes all items from that index to the end. items.length - 3 gets the index 3 chars from the end
string.Remove()
items.length - 3