示例#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);