Click or drag to resize

Bounds Constructor

Holds the values which form the bounds of a range of real numbers.

Namespace:  AGI.Foundation
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public Bounds(
	double lowerBound,
	double upperBound
)

Parameters

lowerBound
Type: SystemDouble
The minimal value defining the range of numbers.
upperBound
Type: SystemDouble
The maximal value defining the range of numbers.
Exceptions
ExceptionCondition
ArgumentException Thrown when the upperBound is less than the lowerBound or when one value is NaN and the other is not.
See Also