Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

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 243 views
2 answers 151 views
2 answers 202 views
1 answer 193 views
1 answer 136 views
1 answer 142 views
142 views asked Jun 13, 2015 by avibootz
2 answers 231 views
...