What does 0u
mean in c#? Sample context:
uint n = _seconds;
while (n > 0u) {
// TODO
};
var a = 0U; // a is unsigned int
Same as
var a = (uint)0; // a is unsigned int
Check this
It means the same thing as ((uint)0)
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With