What is the equivalent (in C#) of Java's >>> operator? Just to clarify, I'm not referring to the >> and << operators.
feedback
|
|
In C#, you can use unsigned integer types, and then the Since Java doesn't support unsigned integers (apart from | ||||
|
feedback
|
|
Java doesn't have an unsigned left shift ( E.g.
| |||||||||||||
feedback
|
|
Upon reading this, I hope my conclusion of use as follows is correct. If not, insights appreciated. Java
C#:
| |||
|
feedback
|
|
n >>> s in Java is equivalent to TripleShift(n,s) where:
| |||
|
feedback
|