Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ToString()
[23/36]
static ?
string
System.Convert.ToString
(
object?
value
,
IFormatProvider
?
provider
)
inline
static
Definition at line
2326
of file
Convert.cs
.
2327
{
2328
if
(
value
is IConvertible convertible)
2329
{
2330
return
convertible.ToString(provider);
2331
}
2332
if
(
value
is IFormattable formattable)
2333
{
2334
return
formattable.ToString(
null
, provider);
2335
}
2336
if
(
value
!=
null
)
2337
{
2338
return
value
.ToString();
2339
}
2340
return
string
.Empty;
2341
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
Convert
Generated by
1.10.0