I am trying to convert some Java code to C#. How can the following unsigned right shift operation be represented in C#?
int src1, src2, ans; ans = src1 >&
I think it's just >> whether it is signed or not depends on whether it is an int/long or uint/ulong, so you would have to cast as necessary