Logo

Programming-Idioms

History of Idiom 55 > diff from v32 to v33

Edit summary for version 33 by :
New Csharp implementation by user [sb88]

Version 32

2016-02-16, 15:55:00

Version 33

2016-02-16, 16:00:49

Idiom #55 Convert integer to string

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

Idiom #55 Convert integer to string

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

Code
string s = i.ToString()