Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class DesplazamientoDerecha
- {
- static void Main()
- {
- byte byte1 = 7;
- byte byte2 = (byte)(byte1 >> 2);
- Console.WriteLine(byte2); // Imprime: 1 (decimal)
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement