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

c# - ItextSharp font color issue in ver 5.5.4+ -

jquery - Multiple issues with pushstate: history, loading, calling functions -

ios - retrievePeripherals deprecated in IOS7 how to substitude it with retrievePeripheralsWithIdentifiers -