C# Loop thru a Listbox
For the life of me (no pun intended)....I cannot convert this from VB:
for i = 0 to List1.listcount - 1
MsgBox (List1.List(i))
next
Believe me.....I have tried every logical possibility....this is pretty scary, from what I've read the syntax diffs between VB.Net/VB and C#....are not really that different.
for (int i = 0; i < 5; i++) MessageBox.Show(listbox1.?

