예제 #1
0
파일: User.cs 프로젝트: jbienias/Studies
 public bool DeleteMessageSent(int index)
 {
     if (index < Sent.Count)
     {
         Sent.RemoveAt(index);
         return(true);
     }
     else
     {
         return(false);
     }
 }
예제 #2
0
 public void TossSentAt(int i)
 => Sent.RemoveAt(i);