real class : ToString() method
Description
Gets a string representation of the real value.
Syntax
realInstance.ToString()
Arguments
None
Return value
Class | Description |
string | A string representation of the real value. |
Sample code
//anyReal is a instance of real type.
string stringRepresentation = anyReal.ToString();
Notes
It's a wrapper of the System.Double.ToString().