15 public Type
From => typeof(ushort);
20 public Type
To => typeof(
double);
30 if (Value is ushort d)
33 throw new ArgumentException(
"Expected ushort value.", nameof(Value));
45 if (Value is ushort d)
48 throw new ArgumentException(
"Expected ushort value.", nameof(Value));
Converts ushort numbers to double numbers.
Type From
Converts double numbers to ushort numbers.
Type To
Converter converts objects to this type.
object Convert(object Value)
Converts the object in Value to an object of type To.
IElement ConvertToElement(object Value)
Converts the object in Value to an object of type To, encapsulated in an IElement.
Basic interface for all types of elements.
Converts an object of one type to an object of another type.