Sorry, i have a problem a have the next code
string str = "C3000000" // is a representation to float number in hex (in decimal is 195).
a try to convert in integer, by this method
string temp = System.Convert. ToUInt32(str, 16).ToString();
I want show it in a TEXbox by
TextBox1.Text = temp;
but a get the same string c3000000!!! :( I need to show 195.
What can i do, please help me
string str = "C3000000" // is a representation to float number in hex (in decimal is 195).
a try to convert in integer, by this method
string temp = System.Convert. ToUInt32(str, 16).ToString();
I want show it in a TEXbox by
TextBox1.Text = temp;
but a get the same string c3000000!!! :( I need to show 195.
What can i do, please help me
Comment