我想Except
在两个列表之间申请。一个列表是MailAddress
格式,另一个是String
(转换为列表))?
List<MailAddress> toemails = new List<MailAddress>();
//List<String> emailsFrom = address.Split(';').ToList();
List<string> temp1 = new List<string>();
List<MailAddress> temp2 = new List<MailAddress>();
List<MailAddress> temp3 = new List<MailAddress>();
//message.to gives me a list of messages (outgoing)
foreach (var e in message.To)
{
temp2.Add(e);
}
//result contains a list of emails fetched (count=7)
var result = from lst in ListofEmails where lst.ToLower().Length < 50 select lst;
temp1 = result.ToList();
//(Not able to understand this, how to proceed)
// toemails = temp2.Except(temp1.);
// MailMessage msg = new MailMessage();
的输出结果Except
应该是MailAddress
对象列表。