How can I convert an int datatype into a string datatype in C#?

1Best Answer
11

string myString = myInt.ToString();

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *