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

◆ ToChar() [11/18]

static char System.Convert.ToChar ( object? value,
IFormatProvider? provider )
inlinestatic

Definition at line 627 of file Convert.cs.

628 {
629 if (value != null)
630 {
631 return ((IConvertible)value).ToChar(provider);
632 }
633 return '\0';
634 }

References System.value.