Hi Mikhail
I am using GetAnyBits below:
public double GetAnyBits(double val, int n, int mask = 1)
{
ulong ulVal = (ulong)val;
return (ulVal >> n) & (ulong)mask;
}
The issue is of format.
When I use Hexadecimal, vales are same as General with addition of 3 places of decimal which are zeros. I could not understand how to try the B Format as there is no option for B. I am using version 6.
Thanks