NumberRangeAdd(NullableInt32, NullableInt32) Method

Adds a range of numbers to the sequence. Reverse ordering is accepted.

Definition

Namespace: GleamTech.DocumentUltimate
Assembly: GleamTech.DocumentUltimate (in GleamTech.DocumentUltimate.dll) Version: 7.1.5
C#
public virtual void Add(
	int? startNumber,
	int? endNumber
)

Parameters

startNumber  NullableInt32
The start number of the range. If value is null, range is considered an open range from 1 to endNumber.
endNumber  NullableInt32
The end number of the range. If value is null, range is considered an open range from startNumber to final number.

See Also