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

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

gradle error "Cannot convert the provided notation to a File or URI" -

python - NameError: name 'subprocess' is not defined -