|  | IntervalToString(String) 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 string ToString(
	string format
)
Public Function ToString ( 
	format As String
) As String
public:
String^ ToString(
	String^ format
)
member ToString : 
        format : string -> string Parameters
- format  String
- Minimum and maximum format 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