итоговые правки лабы 8
This commit is contained in:
parent
a049e091da
commit
b5620899f0
@ -91,6 +91,10 @@ namespace Sailboat
|
||||
MessageBox.Show(ex.Message);
|
||||
_logger.LogWarning($"{ex.Message} в наборе {listBoxStorages.SelectedItem.ToString()}");
|
||||
}
|
||||
catch (ArgumentException ex)
|
||||
{
|
||||
MessageBox.Show(ex.Message);
|
||||
}
|
||||
}
|
||||
|
||||
private void buttonRemoveBoat_Click(object sender, EventArgs e)
|
||||
|
@ -56,7 +56,7 @@ namespace Sailboat.Generics
|
||||
throw new StorageOverflowException(_maxCount);
|
||||
|
||||
if (equal != null && _places.Contains(boat, equal))
|
||||
return false;
|
||||
throw new ArgumentException("Данный объект уже есть в коллекции");
|
||||
_places.Insert(0, boat);
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user