NullableTypes Class Library

NullableDecimal Implicit NullableTypes.NullableInt32 to NullableTypes.NullableDecimal Conversion 

Converts the NullableInt32 parameter to a NullableDecimal structure.

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

Parameters

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