A
almurph
Hi Folks,
Quick one. I am doing some reverse engineering of some Java and
have come accross the following Java code:
/* Java */
int c = (a + b) >>> 1;
I want to reverse engineer it. Here is my equivalent. Comments/
suggestions much appreciated:
/* C# reverse enginner attempt */
int c = (int)(((uint)(a + b)) >> 1)
Once again comments/suggestions/improvements are appreciated...
Colm
Quick one. I am doing some reverse engineering of some Java and
have come accross the following Java code:
/* Java */
int c = (a + b) >>> 1;
I want to reverse engineer it. Here is my equivalent. Comments/
suggestions much appreciated:
/* C# reverse enginner attempt */
int c = (int)(((uint)(a + b)) >> 1)
Once again comments/suggestions/improvements are appreciated...
Colm