我有以下课程:
public class MailData : IDisposable
{
public IDictionary<String, Tuple<Byte[], String>> Attachments { get; set; }
public String From { get; set; }
public IList<String> To { get; set; }
public MailType Type { get; set; }
} // MailData
处置班级的正确方法是什么?
我的意思是,我认为我应该Byte[]
从Dictionary
...中删除所有内容
其他属性呢?