NullableTypes Class Library

NullableDecimal Implicit NullableTypes.NullableByte to NullableTypes.NullableDecimal Conversion 

Converts the NullableByte parameter to a NullableDecimal structure.

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

Parameters

x
A NullableByte 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