AceInfinity
Emeritus, Contributor
Here's a nice little challenge for you guys (I already know the answer, because I answered this for a question on a different forum).
Before we begin, you must know that 0xFFFFFFFF and 4294967295 are equal values
Question: Why will this work:
But this will not:
???
:thumbsup2:
Before we begin, you must know that 0xFFFFFFFF and 4294967295 are equal values
Question: Why will this work:
Code:
Dim i As UInteger = 4294967295
But this will not:
Code:
Dim i As UInteger = &HFFFFFFFF
???
:thumbsup2: