To code “Item(2).ToString” was invalid but how can i identify third item in collection?
What type of collection you are using? Can you elaborate
Thanks for comment.
I’m using a type “System.Collection.Generic.ICollection<System.Dtring>”
Thanks, I could understand how to output these items, but actually want to identify and output only “value2” like item(1).ToString.
Can I only output specified item in “Collection”?
of course in for each loop you can have a if condition what matches to your requirement so you will be getting filtered data then
Just use ‘item(1)’ instead of ‘item(1).ToString’. Since it’s a collection of String no need to add .ToString
It was my easy miss-understanding.
I should code collection(1).ToString but did like
item(1).ToString
Sorry for bothering you guys…