コード例 #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);