I have a list like this
Dim emailList as new List(Of String)
emailList.Add("[email protected]")
emailList.Add("[email protected]")
emaillist.Add("[email protected]")
How can I iterate the list with ForEach to get one string with the emails like this
[email protected];[email protected];[email protected]