Is it better to use "0" concatenation in Convert.ToInt32() function call
- by Asim Sajjad
Is better to use the below statement
Convert.ToInt32("0" + stringValue)
If not then why?
I know that it is better to user int.TryParse() function, which is better, but what about the above statement.