This is my third post of the series of the Number Converter for Windows Phone 7 sourcecode . In my previous posts i talked about
- Number Converter for WP7 – How to convert Decimal Number to Binary , HexaDecimal and Octal Number using C# ?
- How to convert Binary Number to Decimal , HexaDecimal and Octal Number using C# ?
In this blog post , i describe or share the code that converts a Octal Number to Decimal , HexaDecimal and Binary Number using C# in Windows Phone 7 .
public static class OctalConverter
{
public static string OctalToBinary(string OctalNumber)
{
Int64 DecimalNumber = OctalToDecimal(OctalNumber);
string retVal = "";
retVal = DecimalConverter.DecimalToBinary(DecimalNumber);
return retVal;
}
public static Int64 OctalToDecimal(string OctalNumber)
{
return Convert.ToInt64(Convert.ToString(Convert.ToInt64(OctalNumber,8), 10));
}
public static string OctalToHexa(string OctalNumber)
{
Int64 DecimalNumber = OctalToDecimal(OctalNumber);
string retVal = "";
retVal = DecimalConverter.DecimalToHex(DecimalNumber);
return retVal;
}
}
DecimalConverter is a static class that was described in my earlier blog post is again used . If you noticed the above sourcecode , i have tried to the .NET framework function to convert the number instead of writing my own logic …
Source : How to convert Octal Number to Decimal , HexaDecimal and Binary Number using C# ?
