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

◆ TryParse() [1/2]

static bool System.Boolean.TryParse ( [NotNullWhen(true)] string? value,
out bool result )
inlinestatic

Definition at line 161 of file Boolean.cs.

162 {
163 if (value == null)
164 {
165 result = false;
166 return false;
167 }
168 return TryParse(value.AsSpan(), out result);
169 }
static bool TryParse([NotNullWhen(true)] string? value, out bool result)
Definition Boolean.cs:161

References System.Boolean.TryParse(), and System.value.

Referenced by System.Boolean.Parse(), and System.Boolean.TryParse().