Mono.GetOptions.OptionDetails.IsAlternate C# (CSharp) Метод

IsAlternate() приватный Метод

private IsAlternate ( string compoundArg ) : bool
compoundArg string
Результат bool
		private bool IsAlternate(string compoundArg)
		{
			OptionDetails next = NextAlternate;
			while(next != null)
			{
				if (next.IsThisOption(compoundArg))
					return true;
				next = next.NextAlternate;
			}
			return false;
		}