Skip to content

Instantly share code, notes, and snippets.

@melmi
Last active August 1, 2023 21:10
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 melmi/4b2caaafd8f90d51ca8fbc95bc265e0e to your computer and use it in GitHub Desktop.
Save melmi/4b2caaafd8f90d51ca8fbc95bc265e0e to your computer and use it in GitHub Desktop.
C# dumb practices

A long time ago in a galaxy far, far away....

if (condition) doSomething(); else if (!condition) doSomethingElse();
if (condition) doSomething(); else doSomething();
if (condition == true) doSomething();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment