I'm looking to convert this line of C code to C#:
const u64 a = 1, b = -a;
So my understanding is that both constants are unsigned 64-bit integers. If so, what is the result going to look like?
Or is the second constant actually promoted and therefore defined as a signed integer?