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