










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;
}
}
}
}
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。