2012-02-05 69 views
28

我想將字符串中寫入的二進制數字轉換爲其整數值。將二進制字符串轉換爲整數

例如:

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

output應該等於5

+3

你應該問之前嘗試谷歌搜索 「C#轉換X到Y」 。 – ken2k 2012-02-05 13:49:16

+0

[Binary String to Integer]的可能重複(http://stackoverflow.com/questions/1271562/binary-string-to-integer) – 2012-02-05 13:54:08

+0

@TimLloyd另一個問題是更新?如果有什麼問題是這樣的:)愚蠢 – mhvelplund 2017-03-31 04:35:53

回答

相關問題