Generation

generate functionWed, 01 Mar 2023

convert binary number in decimal text string

# public static string BinaryToDecimal(string binaryString) { return Convert.ToInt32(binaryString, 2).ToString(); }

Want to kickstart your project?Use the new AI Studio to create your code