我有点问题。假设我有 2 个文本框,左侧的一个包含以下内容:
Win
Lose
Hello
Goodbye
右边的一个,带有以下信息:
One
Two
Three
Four
现在,在按下按钮时,我想将这两个文本框与冒号分隔符组合起来,所以它会输出如下:
Win:One
Lose:Two
Hello:Three
Goodbye:Four
知道我怎么能做到这一点吗?到目前为止,我所尝试的一切都没有奏效。这是我当前的代码,对不起。我不是想让你为我做我的工作,我只是很困惑:
string path = Directory.GetCurrentDirectory() + @"\Randomized_List.txt";
string s = "";
StringBuilder sb = new StringBuilder();
StreamReader sr1 = new StreamReader("Randomized_UserList.txt");
string line = sr1.ReadLine();
while ((s = line) != null)
{
var lineOutput = line+":";
Console.WriteLine(lineOutput);
sb.Append(lineOutput);
}
sr1.Close();
Console.WriteLine();
StreamWriter sw1 = File.AppendText(path);
sw1.Write(sb);
sw1.Close();