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

◆ AppendFormat() [4/8]

StringBuilder System.Text.StringBuilder.AppendFormat ( IFormatProvider? provider,
string format,
params object?[] args )
inline

Definition at line 1538 of file StringBuilder.cs.

1539 {
1540 if (args == null)
1541 {
1542 string paramName = ((format == null) ? "format" : "args");
1543 throw new ArgumentNullException(paramName);
1544 }
1545 return AppendFormatHelper(provider, format, new ParamsArray(args));
1546 }
StringBuilder AppendFormatHelper(IFormatProvider provider, string format, ParamsArray args)

References System.Text.StringBuilder.AppendFormatHelper(), and System.format.