public void RemovePiple(int index) { try { PipleList.RemoveAt(index); } catch (Exception) { throw new ArgumentException("Неверный индекс"); } }
public void AddPiple(string piple) { PipleList.Add(piple); }
public void RemovePiple(int index) { PipleList.RemoveAt(index); }