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?
}
}
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать