Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     Sets x = new Sets();
     int[] a = { 6, 5, 7, 4 };
     int[] b = { 7, 6, 4, 10 };
     Console.WriteLine(x.operate(a, b, "SYMMETRIC DIFFERENCE"));
     Console.ReadLine();
 }