Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
Are you trying to convert the string representation of a number, or an actual number? And are you trying to convert to decimal, or int? Your example doesn't really match your question. – womp Jun 2 '10 at 4:18
If you're looking to convert decimal to bytes, you can use this code: gist.github.com/eranbetzalel/… – Eran Betzalel Apr 14 at 20:14

6 Answers

up vote 27 down vote accepted

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.

int value = 8;
string binary = Convert.ToString(value, 2);

Which returns 1000.

share|improve this answer
is there any similar method to convert binary to decimal? – kashif Jan 24 at 8:26
@kashif int value = Convert.ToInt32("1101", 2) would give value the value 13. – flindeberg Mar 5 at 18:20

*Convert from any base to any base in C#*

result = Convert.ToString(Convert.ToInt32(number, fromBase), toBase);
share|improve this answer

Very Simple with no extra code, just input, conversion and output.

using System;

namespace _01.Decimal_to_Binary
{
    class DecimalToBinary
    {
        static void Main(string[] args)
        {
            Console.Write("Decimal: ");
            int decimalNumber = int.Parse(Console.ReadLine());

            int remainder;
            string result = string.Empty;
            while (decimalNumber > 0)
            {
                remainder = decimalNumber % 2;
                decimalNumber /= 2;
                result = remainder.ToString() + result;
            }
            Console.WriteLine("Binary:  {0}",result);
        }
    }
}
share|improve this answer

Convert.ToInt32(string, base) does not do base conversion into your base. It assumes that the string contains a valid number in the indicated base, and converts to base 10.

So you're getting an error because "8" is not a valid digit in base 2.

String str = "1111";
String Ans = Convert.ToInt32(str, 2).ToString();

Will show 15 (1111 base 2 = 15 base 10)

String str = "f000";
String Ans = Convert.ToInt32(str, 16).ToString();

Will show 61440.

share|improve this answer

http://zamirsblog.blogspot.com/2011/10/convert-decimal-to-binary-in-c.html

    public string DecimalToBinary(string data)
    {
        string result = string.Empty;
        int rem = 0;
        try
        {
            if (!IsNumeric(data))
                error = "Invalid Value - This is not a numeric value";
            else
            {
                int num = int.Parse(data);
                while (num > 0)
                {
                    rem = num % 2;
                    num = num / 2;
                    result = rem.ToString() + result;
                }
            }
        }
        catch (Exception ex)
        {
            error = ex.Message;
        }
        return result;
    }
share|improve this answer
Not sure how this differs from Xenon's answer. – Joshua Drake Nov 8 '12 at 17:22
using System;

class Program{

static void Main(string[] args){

try{

int i = (int)Convert.ToInt64(args[0]);
Console.WriteLine("\n{0} converted to Binary is {1}\n",i,ToBinary(i));

}catch(Exception e){

Console.WriteLine("\n{0}\n",e.Message);

}

}

public static string ToBinary(Int64 Decimal)
{
// Declare a few variables we're going to need
Int64 BinaryHolder;
char[] BinaryArray;
string BinaryResult = "";

while (Decimal > 0)
{
BinaryHolder = Decimal % 2;
BinaryResult += BinaryHolder;
Decimal = Decimal / 2;
}


BinaryArray = BinaryResult.ToCharArray();
Array.Reverse(BinaryArray);
BinaryResult = new string(BinaryArray);

return BinaryResult;
}
share|improve this answer
1  
You're reinventing the wheel here. The BCL already contains methods to do this. – Nathan Tomkins Jun 2 '10 at 6:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.