如何在C#中调试System.ArgumentOutOfRangeException错误?

时间:2018-05-07 18:38:34

标签: c# error-handling outofrangeexception

这段代码应该取两个样本一个原始样本和一个新样本,然后确定插入到第一个序列中的最小单个连续片段的长度。

尝试一些示例时,我收到以下错误消息:

  

System.ArgumentOutOfRangeException:'索引和长度必须指的是   放在字符串中。参数名称:长度

以下是代码:

class Program
{

    static void Main(string[] args)
    {
        Console.WriteLine(GetSample());
        Console.ReadKey();
    }

    public static int GetSample()
    {
        string sample1 = Console.ReadLine();
        string sample2 = Console.ReadLine();


        if (sample1 == sample2) return 0;

        if (sample1.Length >= sample2.Length)
        {
            for (int i = 0; i < sample2.Length; i++)
            {
                if (!(sample1[i] == sample2[i]))
                {

                    sample1 = sample1.Substring(i, sample1.Length);
                    sample2 = sample2.Substring(i, sample2.Length);
                    break;
                }
            }

            int var = sample1.Length - sample2.Length;
            for (int i = sample2.Length - 1; i >= 0; i--)
            {
                if (sample2[i] == sample1[i + var])
                    sample2 = trimlast(sample2);
            }
        }
        else
        {
            for (int i = 0; i < sample1.Length; i++)
            {
                if (!(sample1[i] == sample2[i]))
                {
                    sample1 = sample1.Substring(i, sample1.Length);
                    sample2 = sample2.Substring(i, sample2.Length);
                    break;

                }
            }
            int var = sample2.Length - sample1.Length;
            for (int i = sample1.Length - 1; i >= 0; i--)
            {
                if (sample2[i + var] == sample1[i])
                    sample2 = trimlast(sample2);
            }
        }
        return sample2.Length;

    }
    public static string trimlast(string str)
    {
        return str.Substring(0, str.Length - 1);
    }
}

}

2 个答案:

答案 0 :(得分:3)

问题是:

sample1 = sample1.Substring(i, sample1.Length);

和其他类似的方法调用。 Substring的第二个参数是长度(即要为子字符串检索的字符数)。因此,如果i大于0,则在这种情况下它应该失败,因为该方法将尝试检索不在字符串中的字符。

答案 1 :(得分:0)

你的一个循环试图访问一个不存在的元素。例如,你有一个数组a = {1,2,3},你试图访问第四个元素,它不存在。

如果你无法找到确切的位置,可能会出现问题,请尝试在循环中使用print语句,显示计数器(i)值。它将指出哪个迭代,您的代码失败。