Hola chic@s soy nueva aca, les agradecería que me pudieran ayudar:
Como puedo moverme con el textbox con un (ArrayList)
por ejemplo en consola seria 
 int x = 1;
 int y = 3;
int[] nums = new int[100;
                for (int i = 0; i < nums.Length; i++)
                {
                        nums[i] = r.Next(1, 100);
                        lista.Add(nums[i]);
                        Lista(lista, x, y);
                        y++;
                        if (y > 22)
                        {
                            y = 3;
                            x += 5;
                        }
                    
                }
            
static void Lista(ArrayList list, int x, int y)
        {
            foreach (int i in list)
            {
                Console.SetCursorPosition(x, y); 
                Console.WriteLine(i);           
            }
        }
Si por ejemplo le damos 25 numeros
1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25
se debe de mostrar en un textBox multiline
1          21
2          22
3          23
4          24
5          25
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gracias  
