left shift : Bitwise Shift : Data Type C# Examples


C# Examples » Data Type » Bitwise Shift »

 

left shift









    
class  MainClass
{

    public  static  void  Main()
    {

        byte  byte1  =  0x9a;    //  binary  10011010,  decimal  154
        byte  byte2  =  0xdb;    //  binary  11011011,  decimal  219
        byte  result;

        System.Console.WriteLine("byte1  =  "  +  byte1);
        System.Console.WriteLine("byte2  =  "  +  byte2);

        
        result  =  (byte)  (byte1  <<  1);
        System.Console.WriteLine("byte1  <<  1  =  "  +  result);
    }

}
    
   
  
   



Output

byte1 = 154
byte2 = 219
byte1 


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Bitwise Shift