6 references to AbbreviationSwitchIndicator
dotnet-svcutil-lib (6)
CommandLineParser.cs (6)
47if (abbreviation.StartsWith(AbbreviationSwitchIndicator)) 49this.Abbreviation = abbreviation.Substring(AbbreviationSwitchIndicator.Length); 85bool enforceSwitchType = other.StartsWith(FullSwitchIndicator) || other.StartsWith(AbbreviationSwitchIndicator); 94else if (other.StartsWith(AbbreviationSwitchIndicator)) 97otherName = other.Substring(AbbreviationSwitchIndicator.Length).ToLowerInvariant(); 208return !(arg.StartsWith(CommandSwitch.FullSwitchIndicator) || arg.StartsWith(CommandSwitch.AbbreviationSwitchIndicator));