public void RemoveCow(Cow cow) { if (_activeCowList.Contains(cow)) { _activeCowList.Remove(cow); cow.Dispose(); } }