示例#1
0
 static void Main(string[] args)
 {
     int[] RotateLeftArray = { 5, 11, 9};
     ArrayElements rotate = new ArrayElements();
     rotate.RotateLeft(RotateLeftArray);
     Console.ReadLine();
 }
示例#2
0
        static void Main(string[] args)
        {
            int[]         RotateLeftArray = { 5, 11, 9 };
            ArrayElements rotate          = new ArrayElements();

            rotate.RotateLeft(RotateLeftArray);
            Console.ReadLine();
        }