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

◆ Format() [3/8]

static string System.String.Format ( IFormatProvider? provider,
string format,
object? arg0,
object? arg1,
object? arg2 )
inlinestatic

Definition at line 1931 of file String.cs.

1932 {
1933 return FormatHelper(provider, format, new ParamsArray(arg0, arg1, arg2));
1934 }
static string FormatHelper(IFormatProvider provider, string format, ParamsArray args)
Definition String.cs:1945

References System.format, and System.String.FormatHelper().