tags:

views:

36

answers:

2

With .net v3.5 or less it was required to manually dispose attachments after sending an email using SMTP client, is this still required in .net v4?

+2  A: 

According to MSDN, the Dispose() method still exists in .net 4, and the notes still say you should call it, so I would assume nothing has changed.

Simon P Stevens
+1  A: 

Yes. The class is IDisposable and the MSDN example still calls Dispose on it.

driis