So, I'm attempting to make a program that searches online for a file, downloads it, then in the file that is downloaded has like something like this:
None Yet!
(Sorry, but there is nothing yet!)
Then on the right of the listbox there is a richtextbox that I want what is in ( and ) to show there.
FileInfo file = new FileInfo("C:\\available.txt");
StreamReader stRead = file.OpenText();
while (!stRead.EndOfStream)
{
listBox3.Items.Add(stRead.ReadLine());
}
I want the code to hide whats in ( and ) and what ever that is in ( and ) to show in the richtextbox.