[Solved] console.writeline values of array on one line [closed]
[ad_1] No need to create a new array, just Concat the two arrays and then use Write instead of WriteLine: foreach(var res in arr1.Concat(arr2) { Console.Write($”{res} “); } 1 [ad_2] solved console.writeline values of array on one line [closed]