How to convert a decimal no into binary in c #
Now i'm using like:
String str="8";
String Ans= Convert.ToInt32(str,2).ToString();
But its throwing some Exceptions.
Please help me to do this
Thanks in advance
|
How to convert a decimal no into binary in c # Now i'm using like:
But its throwing some Exceptions. Please help me to do this Thanks in advance |
|||||||
|
|
Your example has an integer expressed as a string. Let's say your integer was actually an integer, and you want to take the integer and convert it to a binary string.
Which returns 1000. |
|||||
|
|
*Convert from any base to any base in C#*
|
||||
|
|
|
Very Simple with no extra code, just input, conversion and output.
|
||||
|
|
|
So you're getting an error because "8" is not a valid digit in base 2.
Will show
Will show |
|||
|
|
|
http://zamirsblog.blogspot.com/2011/10/convert-decimal-to-binary-in-c.html
|
||||
|
|
|
|||||
|