“c Sharp lub operator w instrukcji IF” Kod odpowiedzi

lub w IF Intusz C#

if (title == "User greeting" || "User name") 
{
  do stuff
}
Wide-eyed Wryneck

c Sharp lub operator w instrukcji IF

//You can't just use:
if (5 == 5 || 6) { ERROR }
//With the || being the OR.

//You have to say:
if (5 == 5 || 6 == 6) { WORKED }

//Hope that helped! :)
Determined Programmer

Odpowiedzi podobne do “c Sharp lub operator w instrukcji IF”

Pytania podobne do “c Sharp lub operator w instrukcji IF”

Więcej pokrewnych odpowiedzi na “c Sharp lub operator w instrukcji IF” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu