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