ms_learn_csharp/032_Debug_console_apps/ejm_debug/Program.cs
2024-08-17 00:11:28 -04:00

6 lines
184 B
C#

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