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 -

Simple Angular 2 project fails 'Unexpected reserved word' -

ios - Possible to get UIButton sizeThatFits to work? -