Answers for "csharp read input from console as array"

C#
0

csharp read input from console as array

string []answer = new string[10];
for(int i = 0;i<answer.length;i++)
{
        answer[i]= Console.ReadLine();
}
Posted by: Guest on June-10-2021

Code answers related to "csharp read input from console as array"

C# Answers by Framework

Browse Popular Code Answers by Language