It is not asking for user input in visual studio. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

It is not asking for user input in visual studio.

I used console.readline and all the code is right.

6th Sep 2016, 10:36 PM
Ethan Holder
Ethan Holder - avatar
6 Answers
+ 1
On the last line, the comma should be on the right of the closing quotation marks.
7th Sep 2016, 2:58 AM
Samuel Neo
Samuel Neo - avatar
0
If you give us the code you used we could help you. Right now we can't do anything to help you.
6th Sep 2016, 11:04 PM
MoroAstray
MoroAstray - avatar
0
This would be where the problem is { string yourName; Console.WriteLine("What is your Name?"); yourName = Console.ReadLine(); Console.WriteLine("Hello," yourName); }
6th Sep 2016, 11:22 PM
Ethan Holder
Ethan Holder - avatar
0
Also how do I view what a user would be viewing in visual studio?
6th Sep 2016, 11:23 PM
Ethan Holder
Ethan Holder - avatar
0
Your last code must have {0} after "Hello " like this: Console.WriteLine("Hello {0}," yourName);
7th Sep 2016, 7:53 AM
Erwin Mesias
Erwin Mesias - avatar
0
both answers below only give half an answer. if you intended to use a placeholder you are both missing the {0} and the comma is the wrong position. Console.WriteLine("Hello {0}", yourName); however if you did not intend to use a placeholder all you are missing is the + sign: Console.WriteLine("Hello, " + yourName);
8th Sep 2016, 7:01 AM
Jordy van der Tang