public static void Main(string[] args)
int[] a = { 1, 2, 3, 4 };
int[] b = { 3, 4, 5, 6, 7, 8 };
int[] c = GetDifference(a, b);
Console.Write(cx + ", ");
int[] d = GetCompliment(a, b);
Console.Write(dx + ", ");
static int[] GetCompliment(int[] a, int[] b) { return GetDifference(b, a); }
static int[] GetDifference(int[] a, int[] b)
int[] c = new int[a.Length];
int[] result = new int[length];
Array.Copy(c, result, length);