Let the C# runtime system handle the error : Exception Throw « Language Basics « C# / C Sharp






Let the C# runtime system handle the error

Let the C# runtime system handle the error
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/

// Let the C# runtime system handle the error. 
 
using System; 
 
public class NotHandled { 
  public static void Main() { 
    int[] nums = new int[4]; 
 
    Console.WriteLine("Before exception is generated."); 
 
    // Generate an index out-of-bounds exception. 
    for(int i=0; i < 10; i++) { 
      nums[i] = i; 
      Console.WriteLine("nums[{0}]: {1}", i, nums[i]); 
    } 
 
  } 
}


           
       








Related examples in the same category

1.Throwing Your Own Exceptions
2.Intentionally throws an error to demonstrate Just-In-Time debuggingIntentionally throws an error to demonstrate
              Just-In-Time debugging
3.Exception throwsException throws
4.Exception throw and catchException throw and catch
5.Exception throw and catch 2Exception throw and catch 2
6.illustrates creating and throwing an exception objectillustrates creating and throwing an exception object
7.Demonstrates rethrowing an exception from a methodDemonstrates rethrowing an exception from a method
8.Manually throw an exceptionManually throw an exception
9.Rethrow an exceptionRethrow an exception