I have List and I need to join them into one Product[].
List
Product[]
You can use SelectMany and then ToArray to do this.
SelectMany
ToArray
var result = source.SelectMany(i => i).ToArray();