G
Guest
Does anyone know how to make sure that the first 48 bits are zeros in int64
value in VB. Basically what the operation I’m trying to achieve is the
equivalent of the following in C#
C# version:
long lngValue;
long result;
lngValue=8978474837228;
result = (lngValue >>48)& 0x000000000000FFFF;
value in VB. Basically what the operation I’m trying to achieve is the
equivalent of the following in C#
C# version:
long lngValue;
long result;
lngValue=8978474837228;
result = (lngValue >>48)& 0x000000000000FFFF;