How to use bitwise and (&) in C#

2 Answers

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 9;
            int b = 16;

            int or = a & b;

            Console.WriteLine(or);

            Console.WriteLine("a  = " + Convert.ToString(9, 2).PadLeft(8, '0'));
            Console.WriteLine("b  = " + Convert.ToString(16, 2).PadLeft(8, '0'));
            Console.WriteLine("or = " + Convert.ToString(or, 2).PadLeft(8, '0'));
        }
    }
}


/*
run:
    
0
a  = 00001001
b  = 00010000
or = 00000000

*/

 



answered Feb 14, 2017 by avibootz
0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 17;
            int b = 16;

            int or = a & b;

            Console.WriteLine(or);

            Console.WriteLine("a  = " + Convert.ToString(17, 2).PadLeft(8, '0'));
            Console.WriteLine("b  = " + Convert.ToString(16, 2).PadLeft(8, '0'));
            Console.WriteLine("or = " + Convert.ToString(or, 2).PadLeft(8, '0'));
        }
    }
}


/*
run:
    
16
a  = 00010001
b  = 00010000
or = 00010000

*/

 



answered Feb 14, 2017 by avibootz

Related questions

2 answers 310 views
2 answers 180 views
2 answers 230 views
1 answer 223 views
1 answer 157 views
1 answer 165 views
165 views asked Jun 13, 2015 by avibootz
2 answers 266 views
...