Advertisement
Fhernd

DesplazamientoDerecha.cs

Jul 11th, 2017
2,778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. class DesplazamientoDerecha
  2. {
  3.     static void Main()
  4.     {
  5.         byte byte1 = 7;
  6.         byte byte2 = (byte)(byte1 >> 2);
  7.  
  8.         Console.WriteLine(byte2);           // Imprime: 1 (decimal)
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement