try{
if(arr.Length >2)
{
throw new DevideByZeroException();
}
}
catch (Exception e)
{Console.WriteLine(e.Message);
}
2022-10-22 10:10:34
try{
if(arr.Length >2)
{
throw new DevideByZeroException();
}
}
catch (Exception e)
{Console.WriteLine(e.Message);
}