.Net Linq - Doing a operation on the subset

Posted by Melursus on Stack Overflow See other posts from Stack Overflow or by Melursus
Published on 2010-06-16T20:48:29Z Indexed on 2010/06/16 20:52 UTC
Read the original article Hit count: 180

Filed under:
|
|

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...

© Stack Overflow or respective owner

Related posts about vb.net

Related posts about LINQ