NullableTypes Class Library

NullableInt64 Division Operator 

Divides its first NullableInt64 operand by its second.

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

Parameters

x
A NullableInt64 structure.
y
A NullableInt64 structure.

Return Value

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

Exceptions

Exception TypeCondition
DivideByZeroExceptiony is Zero while x is not Null.

See Also

NullableInt64 Class | NullableTypes Namespace