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.
我正在尝试为十六进制值声明一个常量值,但似乎我无法在 C# 中实现这一点。
const PROCESSES = &H1F0FFF;
为什么这不起作用?
const int PROCESSES = 0x1F0FFF;