请协助。如何获取特定范围之间的十六进制地址列表。
0x000000> 0x0001B3
需要做类似
的事情
for(int i=0;i< 10;i++)
{
//do stuff here
}
提前致谢
答案 0 :(得分:5)
for (int i = 0x0; i <= 0x1b3; i++) {
// Do stuff with i
// Converts the integer to hex, if that's what you wanted.
string str = i.ToString("X");
}