public  class Program
    {
        static void Main(string[] args)
        {
                Console.WriteLine("请输入本次比赛的人数");
                int count = Convert.ToInt32(Console.ReadLine());                double[][] score = new double[5][];
                string[] name = new string[count];                for (int nowcount = 0; nowcount < count; nowcount++)
                {
                    Console.WriteLine("请输入第" + nowcount + "号选手的姓名:");
                    name[nowcount] = Console.ReadLine();
                    Console.WriteLine("请输入第" + nowcount + "号选手的各个评委给分:");
                    score[nowcount] = new double[5];
                    for (int o = 0; o <= 4; o++)
                    {
                        score[nowcount][o] = Convert.ToDouble(Console.ReadLine());
                    }
                }                Console.WriteLine("_____________________________________________________________________");
                for (int i = 0; i <= count; i++)
                {
                    Console.WriteLine(" " + i + " 号选手:  |" + " 最高得分: " + Max(score[i]) + "   " + " |最低得分: " + Min(score[i]) + "  ");
                    Console.WriteLine("____________|_________________|________________|________________|");
                }                Console.ReadLine();
            }
       static double Max(params double[] array)
       {
           double max = array[0];
           for (int i = 0; i < array.Length; i++)
           {
               if (max < array[i])
                   max = array[i];
           }
           return max;
       }       static double Min(params double[] array)
       {
           double min = array[0];
           for (int i = 0; i < array.Length; i++)
           {
               if (min > array[i])
                   min = array[i];
           }
           return min;
       }
   }
运行结果怎么会出现一个空引用?