如何在.NET中将IEEE Single转换为MBF Single

时间:2019-04-12 23:23:37

标签: c# .net vb.net ieee mbf

我需要将.NET中的IEEE Single转换为旧的MBF Single。这里有类似的帖子,但与我需要的相反。

Convert MBF Single and Double to IEEE

我可以使用VB.NET(首选)或C#代码。

1 个答案:

答案 0 :(得分:0)

我在https://community.embarcadero.com/index.php/article/technical-articles/162-programming/14799-converting-between-microsoft-binary-and-ieee-forma遇到了Borland C ++中的一个示例

我混淆了该示例(我不了解C ++),并在VB.NET中提出了以下内容。它的工作原理是零值,所以我添加了一个零校验。我不知道C ++代码是否也得到零错误或是否是我的转换。无论如何,它似乎可行。

Function MTIS(value As Single) As Byte()

    Dim msbin(3) As Byte

    If value <> 0 Then ' HACK

        Dim ieee As Byte() = BitConverter.GetBytes(value)

        Dim sign As Byte
        Dim msbin_exp As Byte

        sign = ieee(3) And CByte(&H80)
        msbin_exp = msbin_exp Or ieee(3) << 1
        msbin_exp = msbin_exp Or ieee(2) >> 7

        ' An ieee exponent of 0xfe overflows in MBF
        If msbin_exp = CByte(&HFE) Then
            Throw New OverflowException("An IEEE exponent of 0xFE overflows in MBF.")
        End If

        msbin_exp += CByte(2) ' actually, -127 + 128 + 1
        msbin(3) = msbin_exp
        msbin(2) = msbin(2) Or sign
        msbin(2) = msbin(2) Or (ieee(2) And CByte(&H7F))
        msbin(1) = ieee(1)
        msbin(0) = ieee(0)

    End If

    Return msbin

End Function