Ejemplo n.º 1
0
 //その他管理リストの削除関数
 public void RemoveOtherDirector(OtherDirector other)
 {
     if (!otherDirectors.Contains(other))
     {
         return;
     }
     otherDirectors.Remove(other);
 }
Ejemplo n.º 2
0
 //その他管理リストの追加関数
 public void AddOtherDirector(OtherDirector other)
 {
     if (otherDirectors.Contains(other))
     {
         return;
     }
     otherDirectors.Add(other);
 }