Use Bitwise Complement Operators with Various Data Type in CSharp

Description

The following code shows how to use Bitwise Complement Operators with Various Data Type.

Example


using System;/*w w  w  .j  a va  2 s . co  m*/
using System.Data;


class Class1{
        static void Main(string[] args){
      uint x = 0x01001001;
      uint XComp = ~x;
      Console.WriteLine("~x = " + ~x);

      sbyte B1 = sbyte.MinValue;  
      sbyte B2 = sbyte.MaxValue;
      Console.WriteLine("B1|B2 = " + (((byte)B1|(byte)B2)));

      ushort x2 = 0x00000001;           // Problem
      Console.WriteLine("~x2 = " + ~x2);

      byte y = 1;                       // Problem
      //byte B = ~y;
      Console.WriteLine("~y = " + ~y);

      char x3 = (char)1;               // Problem
      Console.WriteLine("~x3 = " + ~x3);

      sbyte x5 = 1;
      Console.WriteLine("~x5 = " + ~x5);
      
      uint IntResult = (uint)~x;
      Console.WriteLine("IntResult = " + IntResult);
      
      byte ByteResult = (byte)~y;
      Console.WriteLine("ByteResult = " + ByteResult);
        }

}

The code above generates the following result.





















Home »
  C# Tutorial »
    C# Language »




C# Hello World
C# Operators
C# Statements
C# Exception