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");
}