Repository

dotnet/csharp-notebooks

Get started learning C# with C# notebooks powered by .NET Interactive and VS Code.
533 172 33 20
  • 000
Within these interactive notebooks, I am unable to find any examples on how to get a user's input? As I try Console.ReadLine() it proceeds to execute the next line of code. Example: string []answer = new string[10]; for(int i = 0; i < answer.Length; i++) { answer[i]= Console.ReadLine(); } With th...