Rhino.DToA.Word0 C# (CSharp) Method

Word0() static private method

static private Word0 ( double d ) : int
d double
return int
		internal static int Word0(double d)
		{
			long dBits = System.BitConverter.DoubleToInt64Bits(d);
			return (int)(dBits >> 32);
		}