Assume result[11] == string.Empty (i.e. result[11] = "")
if (result[11] == string.Empty) // this block works fine
{
user.Age = Int32.Parse(result[11]);
}
else
{
user.Age = null;
}
// the following line will throw exception
user.Age = (result[11] == string.Empty) ? (int?) null :
Int32.Parse(result[11]);
System.FormatException was unhandled Message=Input string was not in a correct format. Source=mscorlib StackTrace: at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, >> >> NumberFormatInfo info, Boolean parseDecimal) at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) at System.Int32.Parse(String s)
To me, the above two blocks are same. Then why the first one works while the second one doesn't?