6 lines
184 B
C#
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]);
|