on a windows application I have a txttable that I am trying to write an int in.
It works fine when i send a string to it, it prints it by doing the following
Code:
   txtTable.Text = "Hello dealer";
but when i try to send an int variable to it like so
[code]
int x=10;
txtTable.text=x;
[code]

i get the following error
Cannot implicitly convert type 'int' to 'string'
how then can i put this int out to the text box?
Thanks