public static void CreateList(Random rnd) { AVLTree aVL = new AVLTree(); for (int i = 0; i < CountItems; i++) { aVL.Inser(rnd.Next(RndMin, RndMax)); } aVL.ConsolePrint(); }