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

◆ Insert() [12/20]

StringBuilder System.Text.StringBuilder.Insert ( int index,
object? value )
inline

Definition at line 1473 of file StringBuilder.cs.

1474 {
1475 if (value != null)
1476 {
1477 return Insert(index, value.ToString(), 1);
1478 }
1479 return this;
1480 }

References System.index, System.Insert, and System.value.