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

◆ Insert() [5/20]

StringBuilder System.Text.StringBuilder.Insert ( int index,
char?[] value )
inline

Definition at line 1380 of file StringBuilder.cs.

1381 {
1382 if ((uint)index > (uint)Length)
1383 {
1384 throw new ArgumentOutOfRangeException("index", SR.ArgumentOutOfRange_Index);
1385 }
1386 if (value != null)
1387 {
1388 Insert(index, value, 0, value.Length);
1389 }
1390 return this;
1391 }

References System.SR.ArgumentOutOfRange_Index, System.index, System.Insert, System.Text.StringBuilder.Length, and System.value.