gpt4 book ai didi

c# - 将 C# 变量用于 cmd 字符串

转载 作者:太空宇宙 更新时间:2023-11-03 18:37:39 26 4
gpt4 key购买 nike

我有一个 C# 脚本,我想使用我在 cmd 命令中声明的一些变量:

using System;
using System.Diagnostics;

namespace UserMake
{
class Program
{
static void Main(string[] args)
{
string userName;
string passWord;

Console.WriteLine("Enter a username:");
userName = Console.ReadLine();
Console.WriteLine("Enter a password:");
passWord = Console.ReadLine();
Process.Start("cmd","net user userName passWord /add");
}
}
}

我不知道如何让“userName”和“passWord”作为变量集读取,而不是创建一个名为“userName”且密码为“passWord”的用户。

感谢任何帮助。

最佳答案

使用string concatenation :

Process.Start("cmd","net user" +  userName + " " + passWord + " /add");

或者,您可以使用 string.Format :

Process.Start(string.Format("net user {0} {1} /add", userName, passWord));

关于c# - 将 C# 变量用于 cmd 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13021513/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com