I am trying to preform a simple bitwise statement to see if a user has security. It seems to be ok until i introduce variables.
This Works: byte test = 1 & 3.
Won't work: byte a = 1; byte b = 3; byte test = a & b;
Is there anyway that I can get this to work?