System.util.Util.USR C# (CSharp) Method

USR() public static method

public static USR ( int op1, int op2 ) : int
op1 int
op2 int
return int
        public static int USR(int op1, int op2)
        {
            if (op2 < 1) {
                return op1;
            } else {
                return unchecked((int)((uint)op1 >> op2));
            }
        }