Converting a String containing a Memory Address to Integer
Hey guys,
im starting to freak out about this problem. All i want is to write a simple c# program that lets you enter a memory address in a textbox and then displays it value. But the problem is that the address has to be an Integer, but i just can't convert a string from a textbox like 1DBD448 (or 0x1DBD448) to an Integer using int.Parse or Convert.ToInt32, that just gives me an error.
Any idea on how to do this?
Many thanks in advance!
Sorcer
Soo, if i understand your problem right, you try to output a value of an adress in a textbox ?
I remember that there is a C# function int32.tostring or something like this. Not sure if thats the answer you´re looking for....
cheers =)