internal static unsafe byte[] GetBytes(float value) { return(BitConverterLE.GetUIntBytes((byte *)&value)); }
internal static unsafe byte[] GetBytes(double value) { return(BitConverterLE.GetULongBytes((byte *)&value)); }
internal static unsafe byte[] GetBytes(ushort value) { return(BitConverterLE.GetUShortBytes((byte *)&value)); }