示例#1
0
 public void SendAll()
 {
     while (Emails.Any())
     {
         EmailGateway.Send(Emails.Dequeue());
     }
 }