20 lines
423 B
C#
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();
|
||
|
}
|
||
|
}
|
||
|
}
|