为什么 inerithes from 的类System.Exception
在 try catch 块中不起作用?
以下剪断不会触发 catch 块
try
{
int a = 3;
int b = 0;
int c = a/b;
}
catch (CustomEx er)
{
Console.Write(er.Message);
}
public class CustomEx:Exception
{
}
为什么 inerithes from 的类System.Exception
在 try catch 块中不起作用?
以下剪断不会触发 catch 块
try
{
int a = 3;
int b = 0;
int c = a/b;
}
catch (CustomEx er)
{
Console.Write(er.Message);
}
public class CustomEx:Exception
{
}