Hello everyone,
I would like to know how to convert an 32 bit Boolean array to an integer value from one command line instead of writing a For Loop.
dim myBOOL(32) as Boolean
dim myINT as Integer
myBOOL(0) = True
myBOOL(1) = True
myBOOL(5) = True
myINT = xxx(myBOOL) where INT will be 35
--------------------------------------------------------
Also I would like to do the conversion other way round.
Convert an integer to a Boolean array. Like ...
dim myBOOL(32) as Boolean
dim myINT as Integer = 110
myBOOL = YYY(myINT)
where myBOOL = 1101110
if this is possible to do please let me know.
Thanks
Software/Hardware used:
VB.NET 2010
ASKED:
March 14, 2011 6:27 AM
UPDATED:
March 14, 2011 2:09 PM