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