Output from the program that raises a new exception, with inner exception. | Lecture 9 - slide 26 : 30 Program 4 |
M(table,6) N(table,6) P(table,6) Unhandled Exception: System.IndexOutOfRangeException: Index out of range ---> System.IndexOutOfRangeException: Index was outside the bounds of the array. at ExceptionDemo.P(Int32[] table, Int32 idx) at ExceptionDemo.N(Int32[] table, Int32 idx) --- End of inner exception stack trace --- at ExceptionDemo.N(Int32[] table, Int32 idx) at ExceptionDemo.M(Int32[] table, Int32 idx) at ExceptionDemo.Main() |