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

◆ operator char()

static System.Decimal.operator char ( decimal value)
inlineexplicitstatic

Definition at line 2878 of file Decimal.cs.

2879 {
2880 try
2881 {
2882 return (char)ToUInt16(value);
2883 }
2884 catch (OverflowException innerException)
2885 {
2886 throw new OverflowException(SR.Overflow_Char, innerException);
2887 }
2888 }
static ushort ToUInt16(decimal value)
Definition Decimal.cs:2738

References System.Runtime.Serialization.Dictionary, System.SR.Overflow_Char, System.Decimal.ToUInt16(), and System.value.