예제 #1
0
파일: Choice.cs 프로젝트: 0xCM/Meta.Core
 public Choice(ChoiceIdentity Identity, V Value)
 {
     this.Identity = Identity;
     this.Value    = Value;
 }
예제 #2
0
 public Choice(ChoiceIdentity Identity, string Value)
     : base(Identity, Value)
 {
 }
예제 #3
0
 public ChoiceRange(ChoiceIdentity identity, (V Min, V Max) Range)
예제 #4
0
파일: Choices.cs 프로젝트: 0xCM/Meta.Core
 public Choices(ChoiceIdentity Identity, Seq <Choice> Choices)
     : base(Identity, Choices)
 {
 }