What unmanaged resources does it allocates that needs to be disposed? Isn't it just a simple array of managed data? So why disposing?
|
|
A mail message has attachments -> attachments are Streams -> Streams are to be disposed. Here is the decompiled Dispose method of MailMessage:
As a general rule a class should implement IDisposable if any of its contained children implement it. |
|||||||||||
|
|
A MailMessage can have attachments, an attachment is represented by MIME part which itself holds a Stream. This Stream needs closing as it might hold an unmanaged pointer to the underlying data. |
|||
|
|
|
You don't, it doesn't use any unmanaged resources and will be taken care of by the GC once out of scope... If you have some large attachments you might want to dispose of that to free up memory without waiting for the GC cycle... EDIT: As Darin pointed out the attachment stream could hold pointers so disposing of attachments is good practice... |
|||
|
|