Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 22, 2013 22:50
Show Gist options
  • Save Fhernd/6058412 to your computer and use it in GitHub Desktop.
Save Fhernd/6058412 to your computer and use it in GitHub Desktop.
Código de pruebas o para extracciones.
byte b = 53;
Console.WriteLine("{0:0}", Convert.ToString(b,2));
byte notB = (byte)~b;
Console.WriteLine("{0:0}", Convert.ToString(notB,2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment