try
{ int I = Convert.ToInt32(‘abc’)
}
catch (Exceptionex)
{ Console.WriteLine(“数据错误:” + ex.Message + “ “ +ex.StackTrace);
}
Console.ReadKey();
If (age < 0)
{ throw new Exception(“You come from other world”);
}
try
{ int I = Convert.ToInt32(‘abc’)
}
catch (Exceptionex)
{ Console.WriteLine(“数据错误:” + ex.Message + “ “ +ex.StackTrace);
}
Console.ReadKey();
If (age < 0)
{ throw new Exception(“You come from other world”);
}