Example #1
0
        public static byte[] GetBytes(float value)
        {
            ByteArray arr = ByteArrayFactory.Create(IsLittleEndian);

            arr.WriteFloat(value);
            return(ReadBytes(arr, 4));
        }