|  | IntervalToString Method | 
            Returns a formatted string representation of this interval using 
            conventional notation.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic override string ToString()
Public Overrides Function ToString As String
public:
virtual String^ ToString() override
abstract ToString : unit -> string 
override ToString : unit -> string 
Return Value
String
            A formatted string representation of this interval.
            
 Remarks
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
See Also