You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
423 B
C#

/*
* C# Program to Demonstrate DivideByZero Exception
*/
using System;
class Program
{
static void Main()
{
try
{
int result = 15 / int.Parse("0");
Console.WriteLine(result);
}
catch (DivideByZeroException e)
{
Console.Write(e.Message);
Console.ReadLine();
}
}
}