BudgetAnalyser.Engine.Statement.BankImportUtilities.ThrowIndexOutOfRangeException C# (CSharp) 메소드

ThrowIndexOutOfRangeException() 개인적인 정적인 메소드

private static ThrowIndexOutOfRangeException ( string array, int index ) : void
array string
index int
리턴 void
        private static void ThrowIndexOutOfRangeException(string[] array, int index)
        {
            throw new UnexpectedIndexException(string.Format(CultureInfo.CurrentCulture, "Index {0} is out of range for array with length {1}.", index, array.Length));
        }
    }