toDecimal Summary Returns the decimal (base 10) value of the integer. Usage public string toDecimal() Returns The decimal representation of the integer. Description Returns the decimal (base 10) representation of the integer value as a string. Examples Basic Usage 1234567import System; unsigned short a = 97, b = 98, c = 99; Console.log(a.toDecimal()); // "97"Console.log(b.toDecimal()); // "98"Console.log(c.toDecimal()); // "99" Share HTML | BBCode | Direct Link