Click or drag to resize

IntervalToString(String) Method

Returns a formatted string representation of this interval using conventional notation.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public string ToString(
	string format
)

Parameters

format  String
Minimum and maximum format string.

Return Value

String
A formatted string representation of this interval.
Remarks
An open bracket '[' denotes that the left endpoint is included in the interval; an open parens '(' denotes that the left endpoint is not included in the interval. A similar statement holds true for the characters ']' and ')' and right endpoints. For example [a, b] denotes a closed interval containing both its endpoints, while (a, b) denotes an open interval which contains neither of its endpoints.
See Also