コード例 #1
0
 public Insect(Insect other)
 {
     this.Name        = other.Name;
     this.Age         = other.Age;
     this.Category    = other.Category;
     this.Gender      = other.Gender;
     this.CountOfLegs = other.CountOfLegs;
     Category         = CategoryType.Insect;
 }
コード例 #2
0
ファイル: Bee.cs プロジェクト: tarekalzein/ApuAnimalHotel
 public Bee(Insect other)
 {
     this.Name        = other.Name;
     this.Age         = other.Age;
     this.Category    = other.Category;
     this.Gender      = other.Gender;
     this.CountOfLegs = other.CountOfLegs;
     this.Id          = other.Id;
 }