Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは、10 進数から 2 進数に変換する方法です。
int dec = 42; string bin = Convert.ToString(dec, 2);
私が持っている場合、2進数を10進数に変換する方法
string bin = "0100101" int dec = ???
逆呼び出しを探してください - Convert.ToInt32(value, fromBase):
Convert.ToInt32(value, fromBase)
int dec = Convert.ToInt32(bin, 2);