G
Guest
How can I do a bit-wise operation on a UInt, such as:
dim x as UInt32
x = x And &H80
It says the "And operator isn't defined for UInt32"
But why not? And is there a work-around?
(yes, I must use unsigned-integers...I'm trying to write routines to convert
between IBM<->IEEE floating point, and I must access the floats as if they're
unsigned integers)
Thanks!
dim x as UInt32
x = x And &H80
It says the "And operator isn't defined for UInt32"
But why not? And is there a work-around?
(yes, I must use unsigned-integers...I'm trying to write routines to convert
between IBM<->IEEE floating point, and I must access the floats as if they're
unsigned integers)
Thanks!