Skip to content

Instantly share code, notes, and snippets.

@zc0rp10
Created January 19, 2021 19:15
Show Gist options
  • Save zc0rp10/881d1d2d8cff912b24cb58c6abae29ca to your computer and use it in GitHub Desktop.
Save zc0rp10/881d1d2d8cff912b24cb58c6abae29ca to your computer and use it in GitHub Desktop.
C# Snippets
if (a > b && a > c)
large = a;
else if (b > a && b > c)
large = b;
else
large = c;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment