difference between Int.Parse and Int.TryParse
|
Int.parse is used to convert string into integer and its throw exception if we convert null or invalid input in it.
Int.TryParse does not throw any error because its return boolean value true or false |
|
