I have something like this:
Console.WriteLine("Y =");
Y = Convert.ToInt32(Console.ReadLine());
and it is displayed as follows
Y=
//and here i have to input my value
I want to put my value on the same line
Y= //here to input my value
Any tips?
source
share