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

◆ Format() [4/8]

static string System.String.Format ( IFormatProvider? provider,
string format,
params object?[] args )
inlinestatic

Definition at line 1936 of file String.cs.

1937 {
1938 if (args == null)
1939 {
1940 throw new ArgumentNullException(((object)format == null) ? "format" : "args");
1941 }
1942 return FormatHelper(provider, format, new ParamsArray(args));
1943 }
static string FormatHelper(IFormatProvider provider, string format, ParamsArray args)
Definition String.cs:1945

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