NullableTypes Class Library

NullableInt32 Implicit NullableTypes.NullableByte to NullableTypes.NullableInt32 Conversion 

Converts the NullableByte parameter to a NullableInt32 structure.

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

Parameters

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