/// <summary> /// Replaces the contents of a single position within the builder. /// </summary> /// <param name="newChar">The character to use at the position.</param> /// <param name="replaceIndex">The index to replace.</param> public void ReplaceAt(char newChar, int replaceIndex) => _vsb.ReplaceAt(newChar, replaceIndex);