IntToString
native string IntToString(int value);
Convert an integer to a string
Parameters
- int value
Integer value
Return value
string -
The integer value converted to a string
Examples
- Example: Sample conversion
string s;
s = IntToString(100);
// s = "100";
s = IntToString(-0);
// s = "0";
s = IntToString(-10);
// s = "-10";
You must login to post a comment. Don't have an account? Register to get one!
Facts
- Date created
- Mar 09, 2010
- Last updated
- Mar 09, 2010