I’m converting some Java code to C# and I came across the >> operator. What is that operator called and what is the equivalent in C#?
I’m trying to convert the following code:
final int pointerIndex = (action & ACTION_POINTER_INDEX_MASK) >> ACTION_POINTER_INDEX_SHIFT;
Thanks,
It’s the right-shift operator, and it’s the same in C#.