I have an list and I want to compare a dynamic integer with the elements of the array. How should I do that ??
I have a list as findcolnumber whose elements are: 1,8,9,10,11 and they are generated dynamically. I generate one another integer rowcount. If the value of rowcount is equalto any of those single value 1,8,9,10,11, then only it should go in the for loop.
The list findcolnumber is generated dynamically. Also findcolnumber[what should i keep inside this bracket].
if(findcolnumber[] == rowcount) {
proceed
}