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

◆ CreateFromChar() [1/2]

static string System.String.CreateFromChar ( char c)
inlinestaticpackage

Definition at line 1371 of file String.cs.

1372 {
1373 string text = FastAllocateString(1);
1374 text._firstChar = c;
1375 return text;
1376 }
static string FastAllocateString(int length)

References System.String.FastAllocateString(), and System.text.

Referenced by System.String.Concat< T >().