How to get item in a list with index value without iterating

hI all,

i have list collection item of string.

i want to get the item value in the list with iterating through the loop
the list consists of only one time and want to retreive by the 0th index item

Can someone help me how to achieve this

Thanks in advance

you can get 0th item of a list newtList by newtList(0)

1 Like