我最近发现了有关“ COSMOS”的信息,这显然使制作OS更容易。 现在我不是一个彻头彻尾的初学者,但我是C#的新手。
我一直做得很好,直到我想到了制作命令的想法,这是每个shell都需要的。
我只是不知道如何操作而不会出错或被卡住。
这是我最初的想法。
{
string about = "This OS has been made with COSMOS. All rights reserved. Version 1.3 V-CLIOS";
string help = "The commands are: about";
}
现在我不知道如何使用它们!
int number = 1;
if (number >= 1)
{
Console.Write("Did you use a number?: ");
Console.WriteLine("Yes");
}
else
{
Console.Write("Did you use a number?: ");
Console.WriteLine("No");
}
{
string about = "This OS has been made with COSMOS. All rights reserved. Version 1.3 V-CLIOS";
string help = "The commands are: about";
}
我期望它将执行我将变量设置为的操作,但它甚至都不会写行。