ArrayLINQ.AsEnumerable.where(function (x) cint(x)> 0).toarray and ArrayLINQ.AsEnumerable.where(function(x) CInt(x)<12).toarray
seems above code is not correct, i am trying to get numbers >0 and numbers less than 200
can anyone correct it
ArrayLINQ.AsEnumerable.where(function (x) cint(x)> 0).toarray and ArrayLINQ.AsEnumerable.where(function(x) CInt(x)<12).toarray
seems above code is not correct, i am trying to get numbers >0 and numbers less than 200
can anyone correct it
Try this
resultArray = ArrayLINQ.AsEnumerable().Where(Function(x) CInt(x) > 0 AndAlso CInt(x) < 200).ToArray()
Assign activity:
filteredArray = ArrayLINQ.AsEnumerable().Where(Function(x) CInt(x) > 0 AndAlso CInt(x) < 200).ToArray()
Try this:
ArrayLINQ.AsEnumerable().Where(Function(x) CInt(x) > 0 AndAlso CInt(x) < 200).ToArray()
Regards
resultArray = ArrayLINQ.AsEnumerable().Where(Function(x) CInt(x) > 0 AndAlso CInt(x) < 200).ToArray()
Hope it helps!!
not sure the same code did not worked… anyways it popped the result now
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.