Which of the following code is fastest/best practice for converting some object x?
int myInt = (int)x;
or
int myInt = Convert.T
Best practice would be TryParse, and seeing the result of that, if it worked - otherwise you could get exceptions