使用Console.ReadLine()C#读取地址

时间:2015-03-17 00:04:15

标签: c# int hex

我尝试使用以下方法读取内存地址:

int address = Console.ReadLine();

如你所见,这不起作用,我怎么能这样做?

要读取的值:0x007FCB20

2 个答案:

答案 0 :(得分:0)

首先将其捕获为字符串。 e.g。

string address = Console.ReadLine();

然后将字符串转换为整数:

Int32 addressInt = Convert.ToInt32(address, 16);

答案 1 :(得分:0)