TechTalk Genome v4.2

NullableInt16 Subtraction Operator 

Computes the subtraction of the two specified NullableInt16 structures.

public static NullableInt16 operator -(
   NullableInt16 x,
   NullableInt16 y
);

Parameters

x
A NullableInt16 structure.
y
A NullableInt16 structure.

Return Value

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

Exceptions

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

Requirements

Namespace: TechTalk.Genome.NullableTypes

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableInt16 Class | TechTalk.Genome.NullableTypes Namespace