C#第六天异常
namespace gowater
{
class Program {
static void Main()
{
try
{
}
catch (Exception)
{
throw;
}
}
}
}
namespace gowater
{
class Program {
static void Main()
{
try
{
int[] arr = { 1, 2, 3 };
Console.WriteLine(arr[3]);
}
catch (Exception e)
{
Console.WriteLine(e.Message);
throw;
}
}
}
}

浙公网安备 33010602011771号