I have this list List<string> Url = new List<string>();
with more element >10 and i need to get only 5 element.
I tried in this mode i get all element:
foreach (string key3 in Url)
{
listBox3.Items.Add(key3);
}