Quantcast
Channel: CoderzHeaven » ASP.NET
Viewing all articles
Browse latest Browse all 10

A simple Exception Handling example – C Sharp/C#

$
0
0

Hi,

As you know an exception is an error that occurs during the runtime.
Here is a simple exception handling example using C Sharp/C#.

using System;

class MainClass{

    public static void Main(){
        int value= 0;
        try {
            int i = 7/value;
        }
        catch (DivideByZeroException e) // catching divide by zero exception
        {
            Console.WriteLine("DivideByZero {0}", e);
        }
        catch (Exception e) // catching any other exceptions
        {
            Console.WriteLine("Exception {0}", e);
        }
    }
}

:)


Viewing all articles
Browse latest Browse all 10

Trending Articles