All about Mobile Development
Windows Phone Rockstar in India

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

Free SharePoint Migration Tool
Migrate to SharePoint 2013 & Office 365 for free with Metalogix

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

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# ?


Share
 
Comments

No comments yet.

Leave a Reply