Answer to Question #28691 in C# for Mohammad

Question #28691
what does "if (( a & b ) == b)" mean?
for Example:
if ((e.Modifiers & Keys.Shift) == Keys.Shift)
{
lbl.Text += "\n" + "Shift was held down.";
}
1
Expert's answer
2013-04-19T08:41:55-0400
& -the bitwise-AND operator, which compares each bitof its first operand to the corresponding bit of its second operand. If both
bits are 1, the corresponding result bit is set to 1. Otherwise, the
corresponding result bit is set to 0.
In this case, condition "if (( a & b ) ==b)" is TRUE, when a>=b. This construction may be used with 2-byte
variables, when most significant bit is a key, least - modifiers.

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS