阅读量:0
在C#的for循环中进行异常处理,可以使用try-catch语句。将可能引发异常的代码放在try块中,然后在catch块中处理异常。这是一个示例:
using System; class Program { static void Main() { for (int i = 0; i < 10; i++) { try { // 将可能引发异常的代码放在try块中 int result = Divide(i, i - 5); Console.WriteLine($"Result: {result}"); } catch (DivideByZeroException ex) { // 在catch块中处理异常 Console.WriteLine($"Error: {ex.Message}"); } } } static int Divide(int a, int b) { return a / b; } }
在这个示例中,我们在for循环中调用了Divide
方法,该方法可能会引发DivideByZeroException
异常。我们将这个方法放在try块中,并在catch块中捕获和处理异常。这样,即使发生异常,程序也会继续执行下一次循环。