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

◆ Format() [145/157]

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

Definition at line 307 of file SR.cs.

308 {
309 if (args != null)
310 {
311 if (UsingResourceKeys())
312 {
313 return resourceFormat + ", " + string.Join(", ", args);
314 }
315 return string.Format(resourceFormat, args);
316 }
317 return resourceFormat;
318 }
static bool UsingResourceKeys()
Definition SR.cs:96

References System.SR.UsingResourceKeys().