Roughly 5 seconds looking at the link Siegi posted yielded an example of what you ought to do:
For example, since the .NET Framework's System.Int32 type implements a ToString() method to convert the value of an integer to its string representation, C#'s int type exposes that method:
int i = 97;
string s = i.ToString();
// The value of s is now the string "97".