i have string list which contains some values…its a dynamic string list , so some time we will get 5 values and some times we will get 15 values in tht list.
i need to add all the values exists inside that string list…how can i?
Get the lenght of the list before add operation, add repeat to number of count-1 you get. Use add by providing the repeatCount as index to pass value from list .
List
[0]2
[1]3
[2]5
repeat (with counter 2 and repeat on sucess)
{
res = res + list[repeatCount]
}