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

◆ Format() [157/157]

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

Definition at line 381 of file SR.cs.

382 {
383 if (args != null)
384 {
385 if (UsingResourceKeys())
386 {
387 return resourceFormat + ", " + string.Join(", ", args);
388 }
389 return string.Format(resourceFormat, args);
390 }
391 return resourceFormat;
392 }
static bool UsingResourceKeys()
Definition SR.cs:96

References System.SR.UsingResourceKeys().