我尝试使用以下方法读取内存地址:
int address = Console.ReadLine();
如你所见,这不起作用,我怎么能这样做?
要读取的值:0x007FCB20
答案 0 :(得分:0)
首先将其捕获为字符串。 e.g。
string address = Console.ReadLine();
然后将字符串转换为整数:
Int32 addressInt = Convert.ToInt32(address, 16);
答案 1 :(得分:0)