我有一个在.NET 中演示异常处理的简单程序,在这种情况下我正在捕捉ArgumentOutOfRangeException
,但是我传递给控制台的自定义消息没有显示出来。
using System;
class program
{
static void Main()
{
int[] source = { 1, 2, 3, 4, 5 };
int[] destination = { 6, 7, 8, 9 };
try
{
Array.Copy(source, destination, 7);
}
catch (ArgumentOutOfRangeException e)
{
Console.WriteLine("Sorry, there is something wrong in the program ! : {0}", e.Message);
}
}
}
这是输出截图