Pulling my hair out on this, must be something simple!!
Got an application setting called "EmailRecipients" with two entries as a string collection:
[email protected]
[email protected]
I'm running this code:
But all it's showing is [email protected]!!
Any thoughts on what I'm doing wrong?
Got an application setting called "EmailRecipients" with two entries as a string collection:
[email protected]
[email protected]
I'm running this code:
For Each emailRecipient As String In My.Settings.EmailRecipients
MsgBox(emailRecipient.ToString)
Next
But all it's showing is [email protected]!!
Any thoughts on what I'm doing wrong?