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

8 comments
Interesting .NET Links - September 1 , 2011 | Tech Blog
[...] How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ? [...]
Sep 1, 2011
How to convert Binary Number to Decimal ,... | .NET and C# | Syngu
[...] aboutNumber Converter for WP7 – How to convert Decimal Number to Binary , HexaDecimal and… Read more… Categories: .NET C# Share | Related [...]
Sep 1, 2011
How to convert Octal Number to Decimal , HexaDecimal and Binary Number using C# ? | Ginktage
[...] How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ? [...]
Sep 6, 2011
How to convert HexaDecimal Number to Decimal , Octal and Binary Number using C# ? | Ginktage
[...] How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ? [...]
Sep 13, 2011
How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# | ProgramInDotnet
[...] via How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C. [...]
Oct 23, 2011
How to convert Octal Number to Decimal , HexaDecimal and Binary Number using C# | ProgramInDotnet
[...] How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ? [...]
Oct 23, 2011
How to convert Octal Number to Decimal , HexaDecimal and Binary Number using C# ? | Windows Phone Rocks
[...] How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ? [...]
Jan 26, 2012
How to convert HexaDecimal Number to Decimal , Octal and Binary Number using C# ? | Windows Phone Rocks
[...] How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ? [...]
Feb 11, 2012