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

◆ Format() [19/157]

static string System.SR.Format ( IFormatProvider? provider,
string resourceFormat,
params object??[] args )
inlinestaticpackage

Definition at line 347 of file SR.cs.

348 {
349 if (args != null)
350 {
351 if (UsingResourceKeys())
352 {
353 return resourceFormat + ", " + string.Join(", ", args);
354 }
355 return string.Format(provider, resourceFormat, args);
356 }
357 return resourceFormat;
358 }
static bool UsingResourceKeys()
Definition SR.cs:96

References System.SR.UsingResourceKeys().