Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Insert() [3/20]

unsafe void System.Text.StringBuilder.Insert ( int index,
char * value,
int valueCount )
inlineprivate

Definition at line 1992 of file StringBuilder.cs.

1993 {
1994 if ((uint)index > (uint)Length)
1995 {
1996 throw new ArgumentOutOfRangeException("index", SR.ArgumentOutOfRange_Index);
1997 }
1998 if (valueCount > 0)
1999 {
2002 }
2003 }
unsafe void ReplaceInPlaceAtChunk(ref StringBuilder chunk, ref int indexInChunk, char *value, int count)
void MakeRoom(int index, int count, out StringBuilder chunk, out int indexInChunk, bool doNotMoveFollowingChars)

References System.SR.ArgumentOutOfRange_Index, System.index, System.Text.StringBuilder.Length, System.Text.StringBuilder.MakeRoom(), System.Text.StringBuilder.ReplaceInPlaceAtChunk(), and System.value.