int[] int_arr = new int[] { 1, 2, 3 };
            color[] color_arr = new color[] { (color)int_arr[0], (color)int_arr[1], (color)int_arr[2] };
            Console.WriteLine("the value of color[0] is :{0}", color_arr[0]);
            Console.WriteLine("the value of color[1] is :{0}", color_arr[1]);
            Console.WriteLine("the value of color[3] is :{0}", color_arr[2]);