259.
Which of the following Statement rethrows Exception.
View Description
catch (IndexOutOfRangeException) {
// catch the exception
Console.WriteLine("No matching element found.");
throw; // rethrow the exception
}