我想创建一个c#控制台应用程序:打开命令行,写入“键入命令”行,如果找不到该命令则写入“未找到”。我来自LUA,我基本上想把它翻译成c#。
function something(cmd)
if cmd == "asd" then
print ("ASD")
else if cmd == "asd2"
then print ("You wrote ASD2")
end
end
end
答案 0 :(得分:0)
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Type in a command.");
string command = Console.ReadLine();
YourMethod(command);
Console.ReadKey(); //prevents the console closing before you can read the output
}
static void YourMethod(string cmd)
{
if(cmd == "asd")
{
Console.WriteLine("ASD");
}
else if(cmd == "asd2")
{
Console.WriteLine("You wrote ASD2");
}
else
{
Console.WriteLine("Not found.");
}
}
}
我相信这是您指定的内容,但请参阅Camilo关于正确问题格式的评论以及Toggy的链接。