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