Bit move operator

image_pdfimage_print

using System;

class Operators {
static void Main() {
int a = 256, b = 128, c, d;
c = a >> 1;
d = b << 1; Console.WriteLine("{0}", c); //128 Console.WriteLine("{0}", d); //256 } } [/csharp]