public void Add(
StringBuilder builder,
int startIndex,
int count
)Public Sub Add (
builder As StringBuilder,
startIndex As Integer,
count As Integer
)public:
void Add(
StringBuilder^ builder,
int startIndex,
int count
)member Add :
builder : StringBuilder *
startIndex : int *
count : int -> unit | ArgumentNullException | builder is null. |
| ArgumentOutOfRangeException | startIndex or count are smaller than zero or larger than the number of characters in builder - or - startIndex + count is larger than the number of characters in builder. |
| InvalidOperationException | The instance had been initialized using the default constructor. |