C# program for XOR Operator



This is the simple program an example of Xor Operator.

In this program if the condition match and the both expression returns true, so the xor operator returns false
and print the else statement.

NOTE :
               It is most important to all the student to know the difference between all the "OPERATOR'S" and also the working of all Operators.

I have already mention all the Operators in our site previously kindly go through with that....


ENJOY CODING!!!
_________________________________________________________________________________


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;



namespace Xor_Operator

{

    class PostSlush

    {

        static void Main(string[] args)

        {

            string name, password;

          

            name = "admin1";

            password = "admin123";



            //it returns false because both expression match.

            if ((name == "admin") ^ (password == "admin123"))

            {

                Console.WriteLine("Acess Granted...");

            }

            else

            {

                Console.WriteLine("Access Denied...Invalid User...");

            }

            Console.ReadLine();

        }

    }

}



Output : 

If the condition matches(TRUE)



If the condition not matches(FALSE)


Previous Post Next Post