int s;
for (int count = 0; count < 10; count++)
            {
                Random ra = new Random(System.Environment.TickCount / (count + 1) + System.Environment.TickCount - s);
                s =ra.Next(heights*widths-count);
            }关于Random的参数 System.Environment.TickCount / (count + 1) + System.Environment.TickCount - s
是什么意思,他从哪随机取数,包含0吗?