I need to join these three List(Of String)
:
Dim lst1 As New List(Of String) From {"man1"}
Dim lst2 As New List(Of String) From {"/1child", "/2child"}
Dim lst3 As New List(Of String) From {"/1age", "/2age"}
To get output like this List(Of String)
:
man1/1child/1age
man1/1child/2age
man1/2child/1age
man1/2child/2age
What is most effictive way? LINQ way? Thanks!