Click here to Skip to main content
15,867,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am taking substrings in HEXADECIMAL Format and converting them in Decimal Integer.
For displaying, i need to convert intergers to strings.

After getting some correct values I am getting error.
Input String is not in a correct format.

C#
string substring = string.Empty;
               if (msg.Length > 57)
               substring = msg.Substring(54, 2);


 int decValue = int.Parse(substring, System.Globalization.NumberStyles.HexNumber);

               string hexValue = decValue.ToString();

               richTextBox1.AppendText (hexValue) ;
Posted
Updated 16-Jan-13 21:46pm
v2

1 solution

Try debugging your code to see for what text you get this error.
This will help you correct issues with data (or your code).
 
Share this answer
 
Comments
ontheline89 17-Jan-13 3:42am    
I am getting some values which are in not in correct format. But how to avoid them ?
Abhinav S 17-Jan-13 3:50am    
Try to put in validations to allow the user to correct them.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900