IsThisOption() private méthode

private IsThisOption ( string arg ) : bool
arg string
Résultat bool
Exemple #1
0
        private bool IsAlternate(string compoundArg)
        {
            OptionDetails next = NextAlternate;

            while (next != null)
            {
                if (next.IsThisOption(compoundArg))
                {
                    return(true);
                }
                next = next.NextAlternate;
            }
            return(false);
        }