I have an Int64 value, but I only need the lower 32 bits. Thus I want a quick way to get the Int32 value from the lower 32 bits of the Int64 value.
Thanks
You didn't specify the language, but in many, all you need to do is cast it to an Int32. The top bits will be discarded.