Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用反射器反编译了一个 DLL。检索到的代码将十六进制值放入 request.Timeout 的所有分配中。像这样的东西:
请求.超时 = 0x401640;
它编译得很好,但我不知道这样保留这些值是否会使应用程序在运行时表现相同。我可以将它们更改为 DEC,但问题是它们太多了,而且不实用。
我使用.net 3.5。
我的问题是:它的行为是否与设置 DEC 值相同?谢谢你。
简短的回答:是的
长答案:是的,但是您应该以任何方式将它们更改为十进制整数。编程是关于让软件正确运行,但它也与可读性有关。
将来谁可以阅读该代码(包括您在内),都会更容易。