c sharp int to string

C#
// Turn a integer into a string using 'ToString()'
int n = 3;
string number = n.ToString()
Source

Also in C#: