ms_learn_csharp/032_Debug_console_apps/ejm_debug/Program.cs
2024-08-18 00:26:35 -04:00

8 lines
190 B
C#

string[] students = new string[] {
"Sophia", "Nicolas", "Zahirah", "Jeong"
};
int studentCount = students.Length;
Console.WriteLine("The final name is: " + students[studentCount]);