Why ToString() function used like this:
int x = 5;
string y = x.ToString();
==========================
But not that way:
int x = 5;
string y = ToString(x);
==========================
Althought all other functions used after the object not after the variable like that:
string y = "5";
int x = Convert.ToInt32(y);
I know why, Do you know ???
=================== Just tell us to share information.