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.
16進数の値の定数値を宣言しようとしていますが、C#ではこれを実現できないようです。
const PROCESSES = &H1F0FFF;
なぜこれが機能しないのですか?
const int PROCESSES = 0x1F0FFF;