Method ToString
ToString(Int64)
Converts a number to System.String.
Declaration
public static string ToString(long number)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | number |
Returns
Type | Description |
---|---|
System.String |
ToString(Single)
Converts a number to System.String.
Declaration
public static String ToString(float f)
Parameters
Type | Name | Description |
---|---|---|
System.Single | f |
Returns
Type | Description |
---|---|
System.String |
ToString(Int64, Int32)
Converts a number to System.String in the specified radix.
Declaration
public static String ToString(long i, int radix)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | i | A number to be converted. |
System.Int32 | radix | A radix. |
Returns
Type | Description |
---|---|
String | A System.String representation of the number in the specified redix. |