SyntaxFix
Write A Post
Hire A Developer
Questions
This also could be easiest way to add items in ListBox.
for (int i = 0; i < MyList.Count; i++) { listBox1.Items.Add(MyList.ElementAt(i)); }
Further improvisation of this code can add items at runtime.