获取c#中的范围之间的十六进制值

时间:2010-11-14 07:24:16

标签: c# hex

请协助。如何获取特定范围之间的十六进制地址列表。

0x000000> 0x0001B3

需要做类似

的事情

for(int i=0;i< 10;i++) { //do stuff here }

提前致谢

1 个答案:

答案 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");
}