Is there a list that I can add strings to and have it automaticaly sorted? I then want to be able to go thru the list one by one and precess each entry. What is the best object/control to use?
Printable View
Is there a list that I can add strings to and have it automaticaly sorted? I then want to be able to go thru the list one by one and precess each entry. What is the best object/control to use?
Use Generic.List(Of String)
Generics are only available in .NET V2.0
An arraylist might do the job:
http://abstractvb.com/code.asp?A=1030
Does not seem to be apart of .net 1.1?Quote:
Originally Posted by Troy Lundin
Perfect. Thanks.Quote:
Originally Posted by Andy_P