Beispiel #1
0
 /// <summary>
 /// Inserts a string 0 or more times into this builder at the specified position.
 /// </summary>
 /// <param name="index">The index to insert in this builder.</param>
 /// <param name="value">The string to insert.</param>
 /// <param name="count">The number of times to insert the string.</param>
 public void Insert(int index, string value, int count) => _vsb.Insert(index, value, count);