我有一个队列集合
var queue = new Queue<ExchangeEmailInformation>(mailInformation);
其中包含两条记录。我也有 Guid 数组
public static List<Guid> FolderId { get; set; }
其中包含两个 guid 记录。我需要将这些 guid 重新分配给属性 FolderId 的队列集合。我怎样才能做到这一点?下面是 ExchangeEmailInformation 类
public class ExchangeEmailInformation:IEmailInformation
{
public string Subject { get; set; }
public string Sender { get; set; }
public AttachmentCollection Attachment { get; set; }
public Guid FolderId { get; set; }
}