我有一个richTextbox,里面有一些文本。目前,“橙色”位于第 3 行......所以我怎样才能得到“橙色”行。我的代码不起作用=(
我的 C# 代码:
private void button1_Click(object sender, EventArgs e)
{
string orange = "orange";
int a = richTextBox1.Text.IndexOf(orange);
var b = richTextBox1.Lines.ElementAt(a);
textBox1.Text = b.ToString();
}