Intentionally throws an error to demonstrate Just-In-Time debugging : Exception Throw « Language Basics « C# / C Sharp






Intentionally throws an error to demonstrate Just-In-Time debugging

Intentionally throws an error to demonstrate
              Just-In-Time debugging
/*
C# Programming Tips & Techniques
by Charles Wright, Kris Jamsa

Publisher: Osborne/McGraw-Hill (December 28, 2001)
ISBN: 0072193794
*/
//  Throw.cs -- Intentionally throws an error to demonstrate
//              Just-In-Time debugging.
//
//              Compile this program with the following command line:
//                  C:>csc /debug:full Throw.cs
//
namespace nsThrow
{
    using System;
    
    public class Throw
    {
        static public void Main ()
        {
            Console.WriteLine ("This program intentionally causes an error.");
            int x = 42;
            int y = 0;
            int z = x / y;
        }
    }
}


           
       








Related examples in the same category

1.Throwing Your Own Exceptions
2.Exception throwsException throws
3.Exception throw and catchException throw and catch
4.Exception throw and catch 2Exception throw and catch 2
5.illustrates creating and throwing an exception objectillustrates creating and throwing an exception object
6.Demonstrates rethrowing an exception from a methodDemonstrates rethrowing an exception from a method
7.Let the C# runtime system handle the errorLet the C# runtime system handle the error
8.Manually throw an exceptionManually throw an exception
9.Rethrow an exceptionRethrow an exception