Rhino.DToA.Word1 C# (CSharp) Method

Word1() static private method

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