コード例 #1
0
 public ItemType(string name, ItemType parent) : this(name, "", parent) { }
コード例 #2
0
 public ItemType(string name, string description, ItemType parent) : base(name, description)
 {
     ParentType = parent;
 }