how to convert int to string unity csharp

Code Example - how to convert int to string unity csharp

                
                        int your_int = 15; 
// Your original integer

string your_string = your_int.ToString(); 
// The method ToString() converts integers to strings

/*
Answer by Ren Rawbone
*/