Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ToBoolean()
[3/18]
static
bool
System.Convert.ToBoolean
(
[NotNullWhen(true)]
string
?
value
)
inline
static
Definition at line
580
of file
Convert.cs
.
581
{
582
if
(
value
==
null
)
583
{
584
return
false
;
585
}
586
return
bool
.Parse(
value
);
587
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
Convert
Generated by
1.10.0