vote up 1 vote down star

I am trying to a simple C# program that takes input and passes it as output. For instance, the output should be:

What is your name?
{user input}
Your name is {user input}

The program is:

public static void Main(string[] args)
{
    Console.WriteLine("What is your name?");
    string name = Console.ReadLine();
    Console.WriteLine("Your name is: " + name);
    Console.ReadKey();
}

This is enclosed in a class called 'MainClass'

Its output is:

What is your name?
Your name is:

Why is this not working and how can I make it work?

P.S. I am using MonoDevelop and I added Console.ReadKey(); after the last WriteLine. No change.

flag

80% accept rate
How are you running the program? – jeffamaphone Mar 17 at 3:34

2 Answers

vote up 4 vote down check

Works on my machine

Is your problem that the program quits immediately after reading the console input? If so, then add a Console.ReadKey(); after the last WriteLine so the program will wait for a keypress. Otherwise, I don't know what the problem is; I copy+pasted the code and it worked.

link|flag
I'd +1 you again just for the stamp. lol – Samuel Mar 17 at 4:02
It's stolen from codinghorror.com/blog/archives/… – configurator Mar 17 at 5:19
+1 for the stamp, hahaha – Matt Olenik Apr 11 at 22:24
vote up 5 vote down

You are trying to type in the Application Output window in MonoDevelop and it is read-only.

You can configure MonoDevelop to automatically run the program at the command prompt by right clicking on the "options" menu item of your project and checking Run on external console under the Run > General tree.

alt text

I guess the guy that gave me the -1 was blinded by that huge "Works on My Machine" emblem, nevertheless this is the correct and only answer.

link|flag
I agree. When the question was posted, and my original answer was given, it said nothing about MonoDevelop – configurator Oct 8 at 0:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.