Possible Duplicate:
Why '&&' and not '&'?
When would I use a bit-wise AND and normal AND?
I read the bit-wise AND is good for applications that have a memory limit.
Which one will be the best to use then, overall?
if (true & false)
{
}
or
if (true && false)
{
}
Wouldn't it be better to always use a bit-wise AND then?