Beispiel #1
0
 public bool DeleteMessageSent(int index)
 {
     if (index < Sent.Count)
     {
         Sent.RemoveAt(index);
         return(true);
     }
     else
     {
         return(false);
     }
 }
Beispiel #2
0
 public void TossSentAt(int i)
 => Sent.RemoveAt(i);