NullableTypes Class Library

NullableByte Division Operator 

Divides its first NullableByte operand by its second.

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

Parameters

x
A NullableByte structure.
y
A NullableByte structure.

Return Value

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

Exceptions

Exception TypeCondition
DivideByZeroExceptiony is Zero while x is not Null.

See Also

NullableByte Class | NullableTypes Namespace