Answers for "and in c#"

C#
4

what is the or symbol in C#

//The or Symbol Is ||
Posted by: Guest on March-11-2020
3

what is the and in c#

//The AND Symbol is &
Posted by: Guest on May-07-2020
1

c# negation

bool passed = false;
Console.WriteLine(!passed);  // output: True
Console.WriteLine(!true);    // output: False
Posted by: Guest on June-07-2020
1

and in c#

/* && would work only if both is true for example */ bool a = 1==2 && 1=< 2; // would be false 
/* but if they are both true it would be true */ bool a = 1==1 && 1==1; // would be true
Posted by: Guest on June-25-2021

C# Answers by Framework

Browse Popular Code Answers by Language