I know i can get the higher Value of a int 64 with:
int32 higher = (int32)(iGUID >> 32);
But how can i set it?
I tried it with this, but it says "expression must be a modifiable value":
iGUID << 32 = inewlGUID;
I need to keep the other Value, ( if i set the higher value, the lower should keep).