Skip to content

Instantly share code, notes, and snippets.

@Retrockit
Created April 12, 2024 11:00
Show Gist options
  • Save Retrockit/604003b83814cf8edbc786d758177a7f to your computer and use it in GitHub Desktop.
Save Retrockit/604003b83814cf8edbc786d758177a7f to your computer and use it in GitHub Desktop.
// true or false
bool isColorBlue = true;
bool isNotColorBlue = false;
string[] colors = new string[] { "blue", "red"};
if (colors[1] != "red")
{
Console.WriteLine(isColorBlue);
}
else
{
Console.WriteLine(isNotColorBlue);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment