.net 对List使用Concat
newlist=list.Concat(list2).ToList()
JS的Concat则不用ToList(),一样要用个值去接
Concat返回是一个新数组,不会改变原数组,与push等不同