NullableTypes Class Library

NullableByte Subtraction Operator 

Computes the subtraction of the two specified NullableByte structures.

[Visual Basic]
returnValue = NullableByte.op_Subtraction(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 subtraction.

Exceptions

Exception TypeCondition
OverflowException The subtraction compute a number that is less than MinValue or greater than MaxValue.

See Also

NullableByte Class | NullableTypes Namespace