Example #1
0
 public Person(Gender gender, int age, List<string> clothes, Sobriety sobriety)
 {
     this.Gender = gender;
     this.Age = age;
     this.Clothes = clothes;
     this.Sobriety = sobriety;
 }
Example #2
0
 public Person(Gender gender, int age, FSharpSet <string> clothes, Sobriety sobriety)
 {
     this.gender   = gender;
     this.age      = age;
     this.clothes  = clothes;
     this.sobriety = sobriety;
 }
 public Person(Gender gender, int age, List <string> clothes, Sobriety sobriety)
 {
     this.Gender   = gender;
     this.Age      = age;
     this.Clothes  = clothes;
     this.Sobriety = sobriety;
 }
 public Person(Gender gender, int age, FSharpSet<string> clothes, Sobriety sobriety) {
     this.gender = gender;
     this.age = age;
     this.clothes = clothes;
     this.sobriety = sobriety;
 }