2 つの文字列リストがあります。
1:
new List<string>{ "jan", "feb", "nov" }
2:
new List<string>{ "these are the months", "this is jan,", "this is feb,", "this is mar,", "this is jun,", "this is nov"}
結果を次のようにしたいと思います。
List<string>{ "these are the months", "this is jan,", "this is feb,", "this is nov"}
今、私は乱雑な分割を行っています。次に、ネストされた foreach を含む linq を実行しています。
しかし、もっと簡単な方法が必要です。おそらく、左側にリスト 2 を持つ linq left JOIN を考えましたが、それが正しいアプローチであったとしても、それをやってのける方法はわかりません。
何か案は?
ありがとう。