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

◆ ToUInt16() [11/19]

static ushort System.Convert.ToUInt16 ( object? value,
IFormatProvider? provider )
inlinestatic

Definition at line 1187 of file Convert.cs.

1188 {
1189 if (value != null)
1190 {
1191 return ((IConvertible)value).ToUInt16(provider);
1192 }
1193 return 0;
1194 }

References System.value.