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