Given global StringBuilder variable sb one can Append new strings as sb.Append("string"). There is a complementary operator sb.Remove(FirstIndex, LastIndex) which can extract a string from the middle of a string. But the Guides say that the character position identified as LastIndex is not removed. The what is the process to remove only the character at the postion of LastIndex?
sb.Remove(LastIndex, LastIndex)?
sb.Remove(LastIndex, LastIndex)?