TechTalk Genome v4.2

NullableUInt32 Subtraction Operator 

Computes the subtraction of the two specified NullableUInt32 structures.

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

Parameters

x
A NullableUInt32 structure.
y
A NullableUInt32 structure.

Return Value

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

Exceptions

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

Requirements

Namespace: TechTalk.Genome.NullableTypes

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

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableUInt32 Class | TechTalk.Genome.NullableTypes Namespace