Exemplo n.º 1
0
        public static double ConvertToDouble(this uint input)
        {
            double output;

            output = Double.FromByteArray(DWord.ToByteArray(input));
            return(output);
        }
Exemplo n.º 2
0
        public static UInt32 ConvertToUInt(this double input)
        {
            uint output;

            output = DWord.FromByteArray(Double.ToByteArray(input));
            return(output);
        }