Example #1
0
 public Choice(ChoiceIdentity Identity, V Value)
 {
     this.Identity = Identity;
     this.Value    = Value;
 }
Example #2
0
 public Choice(ChoiceIdentity Identity, string Value)
     : base(Identity, Value)
 {
 }
Example #3
0
 public ChoiceRange(ChoiceIdentity identity, (V Min, V Max) Range)
Example #4
0
 public Choices(ChoiceIdentity Identity, Seq <Choice> Choices)
     : base(Identity, Choices)
 {
 }