C# – Convert binary string into integer

binarycnetstring

I would like to convert a binary number writen in a String into its integer value.

For example:

string input = "0101";
int output = convert(input);

output should be equal to 5

Best Answer

Convert.ToInt32(String, Int32) lets you specify the base:

int output = Convert.ToInt32(input, 2);