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

◆ AppendFormat() [8/8]

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

Definition at line 1513 of file StringBuilder.cs.

1514 {
1515 if (args == null)
1516 {
1517 string paramName = ((format == null) ? "format" : "args");
1518 throw new ArgumentNullException(paramName);
1519 }
1520 return AppendFormatHelper(null, format, new ParamsArray(args));
1521 }
StringBuilder AppendFormatHelper(IFormatProvider provider, string format, ParamsArray args)

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