vote up 0 vote down star

I'm programming an application in VB.NET in which I need to take the Items from a ListBox, which are an ListBox.ObjectCollection and convert into a String array to be passed as a parameter to a Sub procedure. How should I do it?

flag

1 Answer

vote up 1 vote down

Assuming .NET 3.5, and thus LINQ:

(From item As Object In yourListBox.ObjectCollection Select item.ToString()).ToArray()

This also assumes that the way you want to convert items to strings is via ToString() - but, of course, you can replace it with anything else

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.