C#异常处理:仍然得到未处理的异常

时间:2013-04-11 15:35:34

标签: c# exception-handling try-catch

我还是

  

未处理的异常:System.IndexOutOfRangeException:索引是   在数组范围之外。

向我的屏幕吐出。未处理的?为什么呢?

string t="";
try
{ 
     t = line.Substring(236, 14);
}
catch (Exception e)
{
    Console.WriteLine(e.Message);
    Console.WriteLine("Text: "+line+ ", Line Number: " +count);
}

这就是我得到的 startIndex不能大于字符串的长度。 (从打印到控制台) 参数名称:startIndex 文字:2933000000,行号:13424(从第二个打印到控制台)

我仍然得到这个: 未处理的异常:System.IndexOutOfRangeException:索引超出了数组的范围。

0 个答案:

没有答案