Logo

Programming-Idioms

History of Idiom 76 > diff from v51 to v52

Edit summary for version 52 by Ushiosan23:
[Csharp] convert binary to integer

Version 51

2019-06-20, 06:20:28

Version 52

2019-07-09, 02:22:44

Idiom #76 Binary digits from an integer

Create the string s of integer x written in base 2.

E.g. 13 -> "1101"

Idiom #76 Binary digits from an integer

Create the string s of integer x written in base 2.

E.g. 13 -> "1101"

Extra Keywords
int radix
Extra Keywords
int radix
Code
var s = Convert.ToString(x, 2);
Code
var s = Convert.ToInt64("0100000", 2);