我是编程世界的新手。
我有一个数据提取程序,可以将 MySQL 中的数据提取到一个 word 模板文件中。我不明白主程序如何知道将哪个参数传递给参数。运行exe时,程序怎么知道"Haha, I need to pass a string in there, And it is precisely this string right here"
???。
编辑:该程序应该在按下“提取按钮”时运行,但 exe 程序如何知道字符串 arg 参数在哪里?exe从哪里得到它?
主要代码
private static void Main(string[] args)
{
try
{
if (args[0] == "ALL" || args[0] == "*" || args[0] == "all")
{
PrintARs();
Console.Read();
}
else
{
CreateARDocument(args[0]);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
Console.Read();
}
}