NullableTypes Class Library

NullableInt32 Implicit NullableTypes.NullableInt16 to NullableTypes.NullableInt32 Conversion 

Converts the NullableInt16 parameter to a NullableInt32 structure.

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

Parameters

x
A NullableInt16 to be converted to a NullableInt32 structure.

Return Value

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

See Also

NullableInt32 Class | NullableTypes Namespace