class Program
{
static void Main(string[] args)
{
try
{
int value = int.Parse(" test exception");
}
catch (Exception e)
{
throw e; // According to CLR, is the beginning of the exception located here?
}
}
}
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати