ms_learn_csharp/032_Debug_console_apps/ejm_debug/Program.cs

6 lines
184 B
C#
Raw Normal View History

2024-08-17 00:11:28 -04:00
string[] students = new string[] {"Sophia", "Nicolas", "Zahirah", "Jeong"};
int studentCount = students.Length;
Console.WriteLine("The final name is: " + students[studentCount]);