what is the or symbol in C#
//The or Symbol Is ||
c# negation
bool passed = false;
Console.WriteLine(!passed); // output: True
Console.WriteLine(!true); // output: False
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us