no, the idea is that C and VB have both the same operations, but they are called differently.
so, a code:
>>=
Right shift assignment
so when in C-mode we have:
a >>= 2
when u switch to VB mode it will change to
a = RightShift(2)
or
RightShift a , 2
or
a RightShift 2

