public void Append(Choices alternateChoices)
 {
     Helpers.ThrowIfNull(alternateChoices, "alternateChoices");
     AddItem(alternateChoices.OneOf);
 }
 public GrammarBuilder(Choices alternateChoices)
     : this()
 {
     Append(alternateChoices);
 }