What\'s the difference between casting an Int to a string and the ToString() method ?
For example :-
int MyInt = 10; label1.Text = (string)MyInt;
One more thing never use .ToString() if you think the object might be null or your application will crach example :
//Emulates the problem that might happen object obj = null; obj.ToString();