using System;
class MainClass
{
static void Method()
{
try
{
int a = 0;
a /= a;
}
catch (Exception)
{
Console.WriteLine("最初のcatch");
// 例外クラスの指定の省略
throw;
}
}
static void Main()
{
try
{
Method();
}
catch (Exception error)
{
Console.WriteLine("すべての例外をcatch");
Console.WriteLine(error.Message);
}
}
}
0 コメント:
コメントを投稿