我正在尝试在 c# (winforms) 中做一些事情,但我遇到了一个小问题。我已经尝试了与此问题相关的所有代码,但没有成功。请在回答之前阅读问题。
我有 2 个功能。我想制作 1 个函数,它将从特定的 .txt 文件中获取随机行并将其放入另一个中。
这是一个例子:
//This is a ContexMenuStrip, a right click menu item that need to load Function1 (check the picture below
private void pdkName_Click(object sender, EventArgs e)
{
Function1();
}
private void Function1()
{
//CODE to Count and Display random line from .txt file
}
到目前为止,我已经尝试了许多以前在 stackoverflow.com 上发布的代码,并且我还尝试了很多与它们的组合。我将在此处粘贴其中一些:
Random rand = new Random();
IEnumerable<string> lines = File.ReadLines(@"D:\FirstName.txt");
var lineToRead = rand.Next(1, lines.Count());
var line = lines.Skip(lineToRead - 1).First();
int counter = 0;
string line;
// Read the file and display it line by line.
System.IO.StreamReader file =
new System.IO.StreamReader(@"D:\FirstNames.txt");
while ((line = file.ReadLine()) != null)
{
System.Console.WriteLine(line);
counter++;
}
file.Close();
System.Console.WriteLine("There were {0} lines.", counter);
// Suspend the screen.
System.Console.ReadLine();
// 这有效,但仅适用于第一行,不能与它进行任何组合(从其他函数使其随机)
using (StreamReader reader = File.OpenText(@"D:\FirstName.txt")
{
textBox1.Text = reader.ReadLine();
}
var lines = File.ReadAllLines(@"D:\FirstNames.txt");
var r = new Random();
var randomLineNumber = r.Next(0, lines.Length - 1);
var line = lines[randomLineNumber];
string[] lines = File.ReadAllLines(@"D:\FirstNames.txt");
Random rand = new Random();
return lines[rand.Next(lines.Length)];
该函数需要对文件进行计数,随机选择一行并返回它。调用该函数的 ContexMenuStrip 中的项目菜单用于 TEXTBOX。
所以一般来说,我需要一个来自 .txt 文件的随机名称显示在一个文本框中,单击右键单击文本框并选择加载我的函数的项目。这是一张带有简单解释的小图。