예제 #1
0
        static void Main()
        {
            int [] arr = new int[] { 2, 4, 5 };
            UseGenericList <int[]> .AutoGrow();

            Console.WriteLine(arr.Length);
        }
예제 #2
0
        static void Main()
        {
            int[] arr = new int[] { 1, 4, -5, 10 };
            UseGenericList <int> .Min <int>();

            UseGenericList <int> .Max <int>();
        }