I am writing a program in C#, and I want to catch exceptions caused by converting \"\" (null) to int. What is the exception\'s name?
EDIT: I\'m not sur
Exceptions are expensive. You should use int.TryParse. It will return the boolean false if the conversion fails.