I need to have the following : (name1 + “a”) + (name2 + “a”) + …
Dim separator() As String = {"|"}
myString.Split(separator, StringSplitOptions.None).SomeLinq(...)
I don’t know what to add at the end to add an “a” to each element…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
Selectin this case:Selectcan be used as a “conversion” function this way, too. After this, you can convert back to your one string:My apologies if the VB.Net is slightly off; I’m a C# developer, typically.