gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-05 02:25:07 25 4
gpt4 key购买 nike

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

0x000000 > 0x0001B3

需要做类似的事情


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

提前致谢

最佳答案

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

关于c# - 在 C# 中获取范围之间的十六进制值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4176586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com