Using the Bitwise Complement Operators with Various Data Types : Binary Bit « Data Types « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Data Types » Binary BitScreenshots 
Using the Bitwise Complement Operators with Various Data Types
Using the Bitwise Complement Operators with Various Data Types
  

using System;
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);
        }

}

           
         
    
  
Related examples in the same category
1.Obtaining the Most Significant or Least Significant Bits of a NumberObtaining the Most Significant or Least Significant Bits of a Number
2.Binary Data TestBinary Data Test
3.Binary Network Byte OrderBinary Network Byte Order
4.Int binary
5.Get hash code for a byte array
6.Clone a byte array
7.Count the number of bit
8.Bit Helper
9.Bit shifting for int and long value
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.