そのため、コードにいくつか問題があります。まず、すべての配列を出力するこの問題があります。私はコーディングを始めてまだ 12 日間しか経っていませんが、私の大学の学習に対する考え方のために、私の先生は C# コーディングの基本をいくらか飛ばしてしまいました。そして、アルファベット順に並んでいないことを知りました.....
    static int inputPartInformation(string[] pl)
    {
        int i = 0;
        do
        {
            Console.Write("Enter a Name: ");
            //for the player
            pl[i] = Console.ReadLine();
        }
        while (pl[i++].CompareTo("Q") != 0);
        //if they write Q for the player it will quit
        return i - 1;
    }
    static void Main(string[] args)
    {
        String[] players = new String[100];
        Array.Sort(players);
        // Sort array.
        //defines players in this new instance
        var count = inputPartInformation(players);
        //for the portion of the code that handles the input
        //calculates the average score
        Console.WriteLine("List of People in Order: {0}, {1}, {2}, {3}, {4}, {5}, {6},", players);
        Console.ReadLine();
    }
}
}