Beispiel #1
0
 public NumberListCommand(ListFinisher finisher) : base("#", finisher)
 {
 }
Beispiel #2
0
 protected ListCommand(string marker, ListFinisher finisher) : this(delegate { return(marker ?? string.Empty); }, finisher)
 {
 }
Beispiel #3
0
 protected ListCommand(Func <int, string> supplier, ListFinisher finisher)
 {
     this.finisher  = finisher;
     markerSupplier = supplier;
 }
Beispiel #4
0
 public AlphabeticalListCommand(ListFinisher finisher) : base(Supplier, finisher)
 {
 }