NullableTypes Class Library

NullableInt32 Division Operator 

Divides its first NullableInt32 operand by its second.

[Visual Basic]
returnValue = NullableInt32.op_Division(x, y)
[C#]
public static NullableInt32 operator /(
   NullableInt32 x,
   NullableInt32 y
);

Parameters

x
A NullableInt32 structure.
y
A NullableInt32 structure.

Return Value

Null if either instance of NullableInt32 is Null otherwise a NullableInt32 structure whose Value property contains the results of the division.

Exceptions

Exception TypeCondition
DivideByZeroExceptiony is Zero while x is not Null.

See Also

NullableInt32 Class | NullableTypes Namespace