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
)
inline
static
package
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
}
System.SR.UsingResourceKeys
static bool UsingResourceKeys()
Definition
SR.cs:96
References
System.SR.UsingResourceKeys()
.
System
SR
Generated by
1.10.0