Logo

Programming-Idioms

History of Idiom 55 > diff from v76 to v77

Edit summary for version 77 by EvilGenius:
New VB implementation by user [EvilGenius]

Version 76

2019-09-26, 19:47:21

Version 77

2019-09-29, 01:32:33

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Code
Dim myInt As Integer = 12345
Console.WriteLine(myInt.ToString)