We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc25d34 commit 55239caCopy full SHA for 55239ca
csharp/NullableIntroduction/NullableIntroduction/Program.cs
@@ -26,7 +26,7 @@ static void Main(string[] args)
26
for (int i = 0; i < surveyRun.Questions.Count; i++)
27
{
28
var answer = participant.Answer(i);
29
- Console.WriteLine($"\t{surveyRun.GetQuestion(i)} : {answer}");
+ Console.WriteLine($"\t{surveyRun.GetQuestion(i).QuestionText} : {answer}");
30
}
31
32
else
0 commit comments