How to Parse Command Line Arguments in C#
本问题已经有最佳答案,请猛点这里访问。
我正在尝试创建一个C应用程序,它接受命令行参数(用户名和密码)并将它们声明为变量,因此我将给出参数Bob和12345,它将Bob保存为变量:用户名,并将12345保存为变量:密码。我该怎么做?
您可以使用命令行参数执行此操作。
例子:
1 2 3 4 5 6 | public static void Main(string[] args) { //The arguments are 0 and 1, for the first and second args. var username = args[0]; var password = args[1]; } |