real class : ToString() method

Description

Gets a string representation of the real value.

Syntax

realInstance.ToString()

Arguments

None

Return value

ClassDescription
stringA 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().

Links for reference

Copyright © Rice All rights reserved.