NullableTypes Class Library

NullableDecimal Implicit NullableTypes.NullableInt16 to NullableTypes.NullableDecimal Conversion 

Converts the NullableInt16 parameter to a NullableDecimal structure.

[Visual Basic]
returnValue = NullableDecimal.op_Implicit(x)
[C#]
public static implicit operator NullableDecimal(
   NullableInt16 x
);

Parameters

x
A NullableInt16 to be converted to a NullableDecimal structure.

Return Value

Null if x is Null otherwise a new NullableDecimal structure constructed from the Value of x.

See Also

NullableDecimal Class | NullableTypes Namespace