public string HexaToDecmialConversion(string hexvalue)
{
string decmialValue = "";
for(int i=0; i<hexvalue.Length; i+=2)
{
string hex = hexvalue.Substring(i,2);
decmialValue += Int32.Parse
(hex,System.Globalization.NumberStyles.AllowHexSpecifier).ToString();
}
return decmialValue;
}
Thursday, May 18, 2006
Convert Hexadecimal to Decimal
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment