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

◆ Format() [11/157]

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

Definition at line 815 of file SR.cs.

816 {
817 if (args != null)
818 {
819 if (UsingResourceKeys())
820 {
821 return resourceFormat + ", " + string.Join(", ", args);
822 }
823 return string.Format(provider, resourceFormat, args);
824 }
825 return resourceFormat;
826 }
static bool UsingResourceKeys()
Definition SR.cs:96

References System.SR.UsingResourceKeys().