I'm trying to convert boolean array to byte.
For example:
Dim boolarray1() As Boolean = {True, True, True, False, False, False, False, False}
I've been trying to convert this value to another variable called vOUT as byte. In this case vOUT should give me an value 7.
Any help will be appreciated.