Logo

Programming-Idioms

History of Idiom 55 > diff from v33 to v34

Edit summary for version 34 by :
[Csharp] added documentation

Version 33

2016-02-16, 16:00:49

Version 34

2016-02-16, 16:02:05

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()
Code
string s = i.ToString()
Doc URL
https://msdn.microsoft.com/en-us/library/6t7dwaa5(v=vs.110).aspx