Convert integer to binary in C#

Your example has an integer expressed as a string. Let’s say your integer was actually an integer, and you want to take the integer and convert it to a binary string.

int value = 8;
string binary = Convert.ToString(value, 2);

Which returns 1000.