private void button2_Click(object sender, EventArgs e)
{
string[] lines = System.IO.File.ReadAllLines(this.textBox2.Text);
foreach (string line in lines)
{
this.listProxy.Items.Add(lines);
}
}
When I click the button it is not writing it out to the ListBox.
How can I make it add each line in order to the ListBox?