Convert.ToInt32 and Int.Parse?

Options
- Both are Same
- Int.Parse can't handle Null values , It will throw ArgumentNullException Error
- Convert.ToInt32 can't handle Null Values ,it will throw ArgumentNullException error
- Both can handle Null values


CORRECT ANSWER : Int.Parse can't handle Null values , It will throw ArgumentNullException Error

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement