我必须添加两个 int[] 数组,其中一个 mian int[] 数组最初是空的。我想在主数组中添加另一个数组的元素。在主数组中,将在主数组的最后一个位置添加更多的附加项。
我有一个数组 -
var planetNotInRange = new int[7] ;
if(planetSign.Contains(tempFrind))
{
var result = planetSign.Select((b, k) => b.Equals(tempFrind) ? k : -1)
.Where(k => k != -1).ToArray();
// Here I want to add this result Array in to the planetNotInRange array,
// when ever there is some value in the result array.
}
这是在循环中将给出一些整数数组。现在我想一个接一个地在 PLanetInRange Array 中连接。