Skip to content

Instantly share code, notes, and snippets.

@jbollman7
Created December 13, 2021 16:12
Show Gist options
  • Save jbollman7/0a9b62d77978fbacb3aa057903bc115a to your computer and use it in GitHub Desktop.
Save jbollman7/0a9b62d77978fbacb3aa057903bc115a to your computer and use it in GitHub Desktop.
Convert string to binary
foreach (char ch in MESSAGE)
result += Convert.ToString((int)ch,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment