Answers for "take array input from user in c#"

C#
0

user input to array object c#

for (int i = 0; i<24; i++) //just user the static array length
{
      myStudents[i].Number = Console.ReadLine();
      myStudents[i].Name = Console.ReadLine();
}
Posted by: Guest on February-08-2021
0

user input to array object c#

Student[] ourStudents = new Student[24];   // declared an array of stduent objects
Posted by: Guest on February-08-2021

Code answers related to "take array input from user in c#"

C# Answers by Framework

Browse Popular Code Answers by Language