Skip to content

Instantly share code, notes, and snippets.

@ayende
Created September 12, 2019 21:55
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 ayende/42ae676660edccc35c00c559410fecc5 to your computer and use it in GitHub Desktop.
Save ayende/42ae676660edccc35c00c559410fecc5 to your computer and use it in GitHub Desktop.
uint symbol = 0;
if (dw > 0x000000FF)
{
symbol = 1;
if (dw > 0x0000FFFF)
{
symbol = 2;
if (dw > 0x00FFFFFF)
{
symbol = 3;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment