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
You are going to get a FormatException if a parse fails. Why not use int.TryParse instead?