My question is.
what is it you type when you want your answer next to your question in c#
I mean like this but you type the answer next to the question.
I believe you're looking for Console.Write("your text here");
rather than Console.WriteLine("your text here");
It sounds like you're trying to get rid of the newline.
WriteLine
prints a newline.
Write
doesn't.
string product;
Console.Write("What is the product you want?");
product = Console.ReadLine();
Instead of using Console.WriteLine()
use Console.Write()