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

◆ Append() [9/24]

void System.Text.ValueStringBuilder.Append ( char c)
inline

Definition at line 40 of file ValueStringBuilder.cs.

41 {
42 int pos = _pos;
43 if ((uint)pos < (uint)_chars.Length)
44 {
45 _chars[pos] = c;
46 _pos = pos + 1;
47 }
48 else
49 {
51 }
52 }
int Length
Definition Span.cs:70

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