I\'ve encountered a purely hypothetical problem which feels like it has an easy solution if I find the right linq method...
I have two arrays of ints and I know they are
public static int[] AddArrays(int[] a, int[] b) { return a.Zip(b, (x,y) => x+y).ToArray(); }