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

◆ Append() [24/24]

void System.Text.ValueStringBuilder.Append ( string s)
inline

Definition at line 55 of file ValueStringBuilder.cs.

56 {
57 if (s != null)
58 {
59 int pos = _pos;
60 if (s.Length == 1 && (uint)pos < (uint)_chars.Length)
61 {
62 _chars[pos] = s[0];
63 _pos = pos + 1;
64 }
65 else
66 {
68 }
69 }
70 }
int Length
Definition Span.cs:70

References System.Text.ValueStringBuilder._chars, System.Text.ValueStringBuilder._pos, System.Text.ValueStringBuilder.AppendSlow(), System.Span< T >.Length, and System.s.