vote up 1 vote down star

Hello,

I'm developing a simple project, but how I can do a repeat forever a If function(It's like a command-line)? Thanks.

My code is like this:

Console.Write("> ");
var Command = Console.ReadLine();
if (Command == "About") {
    Console.WriteLine("This Operational System was build with Cosmos using C#");
    Console.WriteLine("Emerald OS v0.01");
}
flag

Can you post what you already have? – TokenMacGuy Nov 4 at 0:16
Of course I can – Nathan Campos Nov 4 at 0:17
5  
Watch out, forever is "a long time" :-) – mjv 0 secs ago – mjv Nov 4 at 0:22
By the way, build should really be built. – SLaks Nov 4 at 0:57
Also, Operational should probably be Operating. – SLaks Nov 4 at 0:57
show 2 more comments

7 Answers

vote up 3 vote down check
string Command;
while (true) {
  Command = Console.ReadLine();
  if (Command == "About") {
    Console.WriteLine("This Operational System was build with Cosmos using C#");
    Console.WriteLine("Emerald OS v0.01");
  }
}
link|flag
It compiles, but ok. – Nathan Campos Nov 4 at 0:23
@Slaks. I changed it – gnibbler Nov 4 at 0:25
vote up 5 vote down

By any chance do you mean:

while( !(!(!(( (true != false) && (false != true) ) || ( (true == true) || (false == false) )))) == false   )
   {
       Console.Write("> ");
       if ("About" == Console.ReadLine())
       {
           Console.WriteLine("This Operational System was build with Cosmos using C#");
           Console.WriteLine("Emerald OS v0.01");
       }
   }
link|flag
Is this an attempt at humor? lol – Simucal Nov 4 at 0:35
I laughed while I was writing it – Tnay Nov 4 at 0:38
Weak, but +1 anyway. haha – Dusty Nov 4 at 3:01
vote up 2 vote down

I don't think your question is really clear. But here is an attempt :)

while (true) {
   if (i ==j ) {
     // whatever
   }
}
link|flag
vote up 2 vote down

Your question is unclear, but you probably want to do something like this:

while(true) {    //Loop forever
    string command = Console.ReadLine();
    if (command.Equals("Exit", StringComparison.OrdinalIgnoreCase))
        break;    //Get out of the infinite loop
    else if (command.Equals("About", StringComparison.OrdinalIgnoreCase)) {A
        Console.WriteLine("This Operational System was build with Cosmos using C#");
        Console.WriteLine("Emerald OS v0.01");
    }

    //...
}
link|flag
vote up 1 vote down

I think you just want a simple while loop with (at least) one exit point.

while(true)
{
    Console.Write("> ");
    var command = Console.ReadLine();
    if (command == "about") {
        Console.WriteLine("This Operational System was build with Cosmos using C#");
        Console.WriteLine("Emerald OS v0.01");
    } else if (command == "exit") {
        break; // Exit loop
    }
}
link|flag
vote up 1 vote down

You can't use an 'if' statement by itself because when it gets to the end your program will continue executing the next statement in your code. I think what you're after is a 'while' statement that always evaluates to true.

e.g.

string Command; 
while(true)
{
    Command = Console.ReadLine(); 
    if (Command == "About")
    { 
        Console.WriteLine("This Operational System was build with Cosmos using C#"); 
        Console.WriteLine("Emerald OS v0.01");
    }
}

This loop will be inescapable unless an exception is thrown or you execute a break statement (or whatever the equivalent is in C#, I'm a Java guy - don't hate me).

link|flag
vote up 1 vote down

You mean this?

while(true) {
    if( ...) {
    }
}

PS: this is one of my favourite preprocessor hacks. Doesn't work in C# though, only C/C++.

#define ever (;;)

for ever {
    //do stuff
}
link|flag

Your Answer

Get an OpenID
or

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