Answers for "and in c sharp"

C#
2

c# and

//the and operator in c sharp is "&&" (hold shift and 6 ;))
if(a == 0 && b == 0)
{
  //both a and b is 0	
}
Posted by: Guest on April-12-2021
0

c# and operator

bool SecondOperand()
{
    Console.WriteLine("Second operand is evaluated.");
    return true;
}

bool a = false & SecondOperand();
Console.WriteLine(a);
// Output:
// Second operand is evaluated.
// False

bool b = true & SecondOperand();
Console.WriteLine(b);
// Output:
// Second operand is evaluated.
// True
Posted by: Guest on July-18-2021

C# Answers by Framework

Browse Popular Code Answers by Language