28
我想將字符串中寫入的二進制數字轉換爲其整數值。將二進制字符串轉換爲整數
例如:
string input = "0101";
int output = convert(input);
output
應該等於5
我想將字符串中寫入的二進制數字轉換爲其整數值。將二進制字符串轉換爲整數
例如:
string input = "0101";
int output = convert(input);
output
應該等於5
Convert.ToInt32(String, Int32),可以指定基地:
int output = Convert.ToInt32(input, 2);
你應該問之前嘗試谷歌搜索 「C#轉換X到Y」 。 – ken2k 2012-02-05 13:49:16
[Binary String to Integer]的可能重複(http://stackoverflow.com/questions/1271562/binary-string-to-integer) – 2012-02-05 13:54:08
@TimLloyd另一個問題是更新?如果有什麼問題是這樣的:)愚蠢 – mhvelplund 2017-03-31 04:35:53