gray laptop computer showing html codes in shallow focus photography

How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ?

This is my second post of the series of the Number Converter for Windows Phone 7 sourcecode . In my previous post i talked about

In this blog post , i describe or share the code  that converts a Binary Number to Decimal , HexaDecimal and Octal Number using C# in Windows Phone 7 .

public static class BinaryConverter
{
   /// <summary>
   /// Binaries to decimal.
   /// </summary>
   /// <param name="bin">The bin.</param>
   /// <returns></returns>
   public static Int64 BinaryToDecimal(string bin)
   {
      long l = Convert.ToInt64(bin, 2);
      int i = (int)l;
      return i;
   }
   /// <summary>
   /// Binaries to octal.
   /// </summary>
   /// <param name="bin">The bin.</param>
   /// <returns></returns>
   public static Int64 BinaryToOctal(string bin)
   {
      Int64 Deci = BinaryConverter.BinaryToDecimal(bin);
      return DecimalConverter.DecimalToOctal(Deci);
   }
   /// <summary>
   /// Binaries to hexa.
   /// </summary>
   /// <param name="bin">The bin.</param>
   /// <returns></returns>
   public static string BinaryToHexa(string bin)
   {
      Int64 Deci = BinaryConverter.BinaryToDecimal(bin);
      return DecimalConverter.DecimalToHex(Deci);
   }
}

DecimalConverter is a static class that was described in my previous blog post . The Convert method is again used to convert from Binary to decimal .

Please do share with me of any other simple logic to convert Binary Number to other formats 🙂

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...