int.TryPrase is great and all, but there is only one problem...it takes at least two lines of code to use:
int.TryPrase
int intValue; string stringValue = \"
int intValue = int.TryParse(stringValue, out intValue) ? intValue : 0;