If I was going to store e-mail addresses in the arraylist, how would I unload them for use of sending an e-mail?
e.g.
Dim objMail As New System.Web.Mail.MailMessage()
objMail.To = **?**
Printable View
If I was going to store e-mail addresses in the arraylist, how would I unload them for use of sending an e-mail?
e.g.
Dim objMail As New System.Web.Mail.MailMessage()
objMail.To = **?**
You could use .CopyTo and then pull the results from the destination array.