Hello
I have small problem with my lists where I am storing url links.
I add my links via textbox and button which shows on listbox but here small problem.
My link shows as "Collection" not as http://blablabla.com
I know that I make a mistake here.
urls.Add(AddLinksField.Text);
listBox1.Items.Add(urls);
But I forgot how should I add correctly these links to the list.
Next question is about removing positions from the list.
How should I read data from my list ?
I need to remove one position from list with "remove button"
Should I do this with "for loop" and indexing in lists ?
Thanks for help.