csharp or

Code Example - csharp or

                
                        if (true || false) { //Checks if either side is true
  Console.WriteLine("One is true");
}

if (false || false) {
  Console.WriteLine("Both are false");
}

//Output:
//One is true
                    
                
 

csharp and

                        
                                //the and operator in c sharp is "&&" (hold shift and 6 ;))
if(a == 0 && b == 0)
{
  //both a and b is 0	
}
                            
                        
 

and operator in csharp

                        
                                # plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A

int x=10, y=5;
Console.WriteLine("----- Logic Operators -----");
Console.WriteLine(x > 10 && y < 10);
                            
                        
 

or operator in csharp

                        
                                int x=15, y=5;
Console.WriteLine("----- Logic Operators -----");
Console.WriteLine(x > 10 || 100 > x);