ExcelFormulaParser.Engine.Excel.Functions.RefAndLookup.Match.GetMatchType C# (CSharp) Méthode

GetMatchType() private méthode

private GetMatchType ( IEnumerable arguments ) : MatchType
arguments IEnumerable
Résultat MatchType
        private MatchType GetMatchType(IEnumerable<FunctionArgument> arguments)
        {
            var matchType = MatchType.ClosestBelow;
            if (arguments.Count() > 2)
            {
                matchType = (MatchType)ArgToInt(arguments, 2);
            }
            return matchType;
        }