int - Read address using Console.ReadLine() C# -
i tried read memory address using:
int address = console.readline();
as see doesn't work, how can this?
value read: 0x007fcb20
capture string first. e.g.
string address = console.readline();
then convert string integer:
int32 addressint = convert.toint32(address, 16);
Comments
Post a Comment