What is the equivalent (in C#) of Java\'s >>> operator?
>>>
(Just to clarify, I\'m not referring to the >> and <<
>>
<<
Java doesn't have an unsigned left shift (<<<), but either way, you can just cast to uint and shfit from there.
<<<
uint
E.g.
(int)((uint)foo >> 2); // temporarily cast to uint, shift, then cast back to int