Hi All,
I need to loop through custom range but no matter how i try, the loop counter starts from 0 instead of specified count.
in first iteration I need to loop from 0-5 which was executed easily for this I used foreach item in Enumerable.range(1,5) for second iteration i tried by setting range 5,10 and item value to 5 but still item starting from 0 but i need to loop from 5,10.
Any suggestion to resolve the issue will be welcome!!
Thanks!!