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
Just try it. This code:
int.Parse("");
Throws a FormatException.