我仍然得到
未处理的异常: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:索引超出了数组的范围。