Skip to content

Instantly share code, notes, and snippets.

@mikeMoreno
Last active June 29, 2021 04:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeMoreno/7b566c3643919d98d1651d23a4cbe37a to your computer and use it in GitHub Desktop.
Save mikeMoreno/7b566c3643919d98d1651d23a4cbe37a to your computer and use it in GitHub Desktop.
Medium/Is C# Getting Too Complex?/Misc 3
var result = condition ? 10 : 15;
----------
int result;
if (condition) {
result = 10;
} else {
result = 15;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment