Signo.X
Well-known member
Hello all ,
I'm trying to do the following :
how do i check if the array contains TRUE values equevilant to a specific number, for examples how do i check that the array has 3 TRUE values????
Thanks in Advanced.
~signox.X
I'm trying to do the following :
VB.NET:
dim i as integer
dim ar as new ArrayList
ar.add(true)
ar.add(false)
ar.add(true)
ar.add(true)
for i = 0 to ar.count - 1
' if the array contains TRUE values equivilant to a specific size do some thing..
if(ar.containts(true))
..... ' do some thing ..
end if
how do i check if the array contains TRUE values equevilant to a specific number, for examples how do i check that the array has 3 TRUE values????
Thanks in Advanced.
~signox.X