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