コード例 #1
0
 public void AddChoice(string text, ICommand command)
 {
     var choice = new Choice(_choices.Count + 1, text, command);
     this.AddChoice(choice);
 }
コード例 #2
0
 public void AddChoice(Choice choice)
 {
     _choices.Add(choice);
 }