-
C#入门经典教程中出现了未经处理的异常
资源介绍
未处理异常
当CLR找不到处理异常的catch过滤器时
using System;
class MyApp
{
public static void Main()
{
try
{
int dZero = 1/0;
}
finally
{
Console.WriteLine(“finally");
}
}
}
- 上一篇: 错误类型-C#入门经典教程
- 下一篇: 调试过程-C#入门经典教程